forked from varia/varia.website
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.
16 lines
386 B
16 lines
386 B
7 years ago
|
{% extends "base.html" %}
|
||
|
{% block title %}{{ page.title }}{%endblock%}
|
||
|
{% block content %}
|
||
7 years ago
|
<div id="page-content">
|
||
7 years ago
|
{{ page.content }}
|
||
7 years ago
|
|
||
|
{% if page.modified %}
|
||
|
<p>
|
||
|
Last updated: {{ page.locale_modified }}
|
||
|
</p>
|
||
|
{% endif %}
|
||
7 years ago
|
<!-- {% import 'translations.html' as translations with context %} -->
|
||
|
<!-- {{ translations.translations_for(page) }} -->
|
||
7 years ago
|
</div>
|
||
|
{% endblock %}
|