diff options
author | Ekaitz Zárraga <ekaitz.zarraga@protonmail.com> | 2018-04-06 12:01:09 +0200 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@protonmail.com> | 2018-04-06 12:01:09 +0200 |
commit | fc476ec89f95a8011ae132dfda05d05ff4642d7a (patch) | |
tree | 0e807e86757f9555479354a6e26b24cf08370912 /themes/elenq/templates/page.html |
Template V1
Diffstat (limited to 'themes/elenq/templates/page.html')
-rw-r--r-- | themes/elenq/templates/page.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/themes/elenq/templates/page.html b/themes/elenq/templates/page.html new file mode 100644 index 0000000..5ceb779 --- /dev/null +++ b/themes/elenq/templates/page.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} +{% block title %}{{ page.title }}{%endblock%} +{% block content %} + <h1>{{ page.title }}</h1> + {% import 'translations.html' as translations with context %} + {{ translations.translations_for(page) }} + + {{ page.content }} + + {% if page.modified %} + <p> + Last updated: {{ page.locale_modified }} + </p> + {% endif %} +{% endblock %} |