Commit 73ad88ea by Tom Christie Committed by GitHub

Merge pull request #4993 from jeffcjohnson/master

add content block and breadcrumbs_empty block to base.html for reuse
parents fb8cbab4 323f5909
......@@ -63,12 +63,15 @@
{% else %}
<li><a href="{{ breadcrumb_url }}">{{ breadcrumb_name }}</a></li>
{% endif %}
{% empty %}
{% block breadcrumbs_empty %}&nbsp;{% endblock breadcrumbs_empty %}
{% endfor %}
</ul>
{% endblock %}
<!-- Content -->
<div id="content">
{% block content %}
{% if 'GET' in allowed_methods %}
<form id="get-form" class="pull-right">
......@@ -252,6 +255,7 @@
</div>
{% endif %}
{% endif %}
{% endblock content %}
</div><!-- /.content -->
</div><!-- /.container -->
</div><!-- ./wrapper -->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment