You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
656 B
45 lines
656 B
{% extends "base.html" %} |
|
{% block head %} |
|
<!-- LAOD MAIN CSS FILE --> |
|
{% endblock head%} |
|
|
|
{% block intro %} |
|
|
|
{% if request.path == "/" %} |
|
<div id="homeSpacer"> |
|
</div> |
|
{% endif %} |
|
|
|
{% endblock %} |
|
|
|
{% block nav %} |
|
{% include 'menu.html'%} |
|
{% endblock nav %} |
|
|
|
{% block content %} |
|
|
|
|
|
|
|
<div class="content_wrapper "> |
|
<div class="page_data"> |
|
{% if request.path == "/" %} |
|
{% if infobox is not none %} |
|
<div id="infobox"> |
|
{{ infobox }} |
|
</div> |
|
{% endif %} |
|
{% else %} |
|
{% endif %} |
|
|
|
{{page}} |
|
</div> |
|
<div class="img_container"> |
|
|
|
</div> |
|
</div> |
|
{% endblock %} |
|
|
|
|
|
{% block script %} |
|
{% endblock %} |
|
|
|
|