1
0
Files
sardines/templates/page.html
2015-08-09 22:49:57 +02:00

29 lines
855 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block title %}{{ page.title }} | {{ SITENAME }}{% endblock %}
{% block local %}
{% block local_aside %}
<aside class="five wide column">
<div class="ui horizontal divider"><i class="location arrow icon"></i></div>
<nav class="ui large secondary menu">
<a href="{{ SITEURL }}/" class="header item"><i class="home icon"></i></a>
<a class="item" href="{{ page.url }}"><i class="file icon"></i> {{ page.title }}</a>
</nav>
{#}{% include "inc/pages.nav.html" %}#}
</aside>
{% endblock %}
{% block main %}<main class="nine wide column">
<article class="ui segment">
<h1 class="entry-title">{{ page.title }}</h1>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.content }}
</article>
</main>
{% endblock %}
{% endblock %}