{% extends "base.html" %} {% block title %}{{ page.title }}{% endblock title %} {% block header_logo %}

{{ config.title }} | {{ page.title }}

{% endblock header_logo %} {% block content %} {% set current_path = page.path %} {% if "/" in current_path %} {% set last_char = current_path | split(pat="/") | last %} {% if last_char == "" %} {% set parent_dirs = current_path | split(pat="/") | slice(end=-2) %} {% else %} {% set parent_dirs = current_path | split(pat="/") | slice(end=-1) %} {% endif %} {% set parent_href = parent_dirs | join(sep="/") %} Back up {% endif %} {% if page.toc %}

Table of Contents

{% endif %}

Posted on {{ page.date }}{% if page.authors %} by {{ page.authors | join(sep=", ") }}{%endif%}.

{{ page.content | safe }} {% endblock content %}