{# gjtheme/layout.html ~~~~~~~~~~~~~~~~~~~ Master layout template for GJ themes. :copyright: Copyright 2017-2018 by Grant Jenks. :license: Apache 2.0, see LICENSE for details. #} {% extends "basic/layout.html" %} {%- macro gj_relbar() %} {%- endmacro %} {%- macro gj_sidebar() %} {%- if render_sidebar %} {%- endif %} {%- endmacro %} {%- macro gj_script() %} {%- for scriptfile in script_files %} {%- endfor %} {%- endmacro %} {%- macro gj_css() %} {%- for css in css_files %} {%- if css|attr("rel") %} {%- else %} {%- endif %} {%- endfor %} {%- endmacro %} {%- block doctype %} {% endblock %} {% set html_tag = '' %} {%- block htmltitle %} {{ title|striptags|e }} — Grant Jenks {%- endblock %} {%- block csss %} {{- gj_css() }} {%- endblock %} {%- block scripts %} {{- gj_script() }} {%- endblock %} {%- block linktags %} {%- if hasdoc('about') %} {%- endif %} {%- if hasdoc('genindex') %} {%- endif %} {%- if hasdoc('search') %} {%- endif %} {%- if hasdoc('copyright') %} {%- endif %} {%- if next %} {%- endif %} {%- if prev %} {%- endif %} {%- endblock %} {%- block extrahead %} {% endblock %} {%- block header %}
Grant Jenks Logo
{% endblock %} {%- block relbar1 %}{% endblock %} {%- block content %}
{% block body %}{% endblock %} {%- if last_updated %}

Last updated on {{ last_updated|e }}.

{% endif %}
{%- endblock %} {%- block relbar2 %}{% endblock %} {%- block footer %} {%- endblock %}