NDOJ/templates/organization/home-base.html

22 lines
525 B
HTML
Raw Normal View History

2023-01-27 23:11:10 +00:00
{% extends "three-column-content.html" %}
2024-06-24 19:56:00 +00:00
{% block js_media %}
2023-01-27 23:11:10 +00:00
{% include "organization/home-js.html" %}
{% block org_js %}{% endblock %}
{% endblock %}
{% block left_sidebar %}
{% include "organization/org-left-sidebar.html" %}
{% endblock %}
{% block right_sidebar %}
{% include "organization/org-right-sidebar.html" %}
{% endblock %}
{% block middle_title %}
{% if title or content_title %}
<center><h2>{{ content_title if content_title else title }}</h2></center>
<br/>
{% endif %}
{% endblock %}