{%extends "base.html"%} {%block html_lang%} {{config['lang']}} {%endblock html_lang%} {%block head_title%} {{page.title}} -- {{config['title']}} {%endblock head_title%} {%block head_description%} {%if page.summary is not none%} {%else%} {%endif%} {%endblock head_description%} {%block head_rss%} {%endblock head_rss%} {%block head_extra%} {%import "highlightjs.html" as hljs%} {{hljs.print()}} {%endblock head_extra%} {%block gdscript_hl%} {%endblock gdscript_hl%} {%block head_og%} {%if page.summary is not none%} {%else%} {%endif%} {%endblock head_og%} {%block body_header%} {%import 'body/header.html' as body_header%} {{body_header.print(config)}} {%endblock body_header%} {%block body_content%}

{{page.title}}

{{page.content}} {%import "page_nav.html" as page_nav%} {{page_nav.print(page, config, "page-nav")}}

By {{', '.join(page.author)}}

Created: {{page.cdate}}

{%if page.mdate is not none%}

Modified: {{page.mdate}}

{%endif%} {%import "tag_list.html" as tag_list%} {{tag_list.print(page.tags, "article-tags")}}
{%endblock body_content%} {%block body_footer%} {%import 'body/footer.html' as body_footer%} {{body_footer.contact(config)}} {{body_footer.donate(config)}} {{body_footer.rss(config)}}
{{body_footer.created_with()}}
{{body_footer.copyright()}} {%endblock body_footer%}