{% extends "index.html" %}
{%- block meta %}
{%- set g_is_article = true %}
{%- endblock meta %}
{% block main %}
{%- if g_profile is defined %}
{% include "partials/profile.html" %}
{%- endif %}
{%- if g_profile is undefined and (page.title or section.title) %}
{%- if page.title %}
{{ page.title }}
{%- elif section.title %}
{{ section.title }}
{%- endif %}
{%- endif %}
{%- set page_toc = false %}
{% include "partials/toc.html" %}
{%- if page.content is defined %}
{{ page.content | safe }}
{%- elif section.content is defined %}
{{ section.content | safe }}
{%- endif %}
{%- if page.lower or page.higher %}
{% include "partials/post_navigation.html" %}
{%- endif %}
{% endblock main %}