forked from varia/varia.website
many many many Varia's websites, work in progress: https://many.vvvvvvaria.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
601 B
24 lines
601 B
{% extends "base.html" %}
|
|
{% block title %}{{ page.title }}{%endblock%}
|
|
{% block content %}
|
|
<section id="content" class="index">
|
|
<header id="banner">
|
|
{% for p in pages %}
|
|
{% if p.title == 'header' %}
|
|
<div id="title">{{ p.content }}</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</header>
|
|
</section>
|
|
<div id="page-content">
|
|
{{ page.content }}
|
|
|
|
{% if page.modified %}
|
|
<p>
|
|
Last updated: {{ page.locale_modified }}
|
|
</p>
|
|
{% endif %}
|
|
<!-- {% import 'translations.html' as translations with context %} -->
|
|
<!-- {{ translations.translations_for(page) }} -->
|
|
</div>
|
|
{% endblock %}
|
|
|