Homebrewserver.club website
https://homebrewserver.club/
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
373 B
16 lines
373 B
{% extends "base.html" %}
|
|
{% block title %}{{ page.title }}{%endblock%}
|
|
{% block content %}
|
|
{% import 'translations.html' as translations with context %}
|
|
{{ translations.translations_for(page) }}
|
|
|
|
<div id ="page-content">
|
|
{{ page.content }}
|
|
|
|
{% if page.modified %}
|
|
<p>
|
|
Last updated: {{ page.locale_modified }}
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
|