{% block page-toolbar %}
{% if site and user.is_authenticated %}
{% endif %}
{% block page-title %}{{ app.title|default:site.title|default:"Django Material" }}{% endblock %}
{% block page-toolbar-actions %}
{% if not user.is_authenticated %}
{% url 'login' as login_url %}{% if login_url %}
{% trans "Login" %}
{% endif %}
{% endif %}
{% endblock %}
{% endblock %}
{% block page-content %}
{% block content %}
To place content here override {% templatetag openblock %} block content {% templatetag closeblock %} in your template
{% endblock %}
{% endblock %}
{% endblock page-body %}