You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
707 B
HTML
25 lines
707 B
HTML
{% import "_macros.html" as macros %}
|
|
{% extends "index.html" %}
|
|
|
|
{% block title %}{{ page.title }} | {{ super() }} {% endblock title %}
|
|
|
|
{% block header %}
|
|
<header class="box-shadow">
|
|
{{ macros::render_header() }}
|
|
</header>
|
|
{% endblock header %}
|
|
|
|
{% block content %}
|
|
<a href=".." style="margin-bottom: 1em;">Go Back</a>
|
|
<div class="heading-text" style="padding-bottom: 0;">{{ page.title }}</div>
|
|
<p style="margin-bottom: 1em; font-size: .8em;">{{ page.description }}</p>
|
|
{{ page.content | safe }}
|
|
{% endblock content %}
|
|
|
|
{% block footer %}
|
|
<!-- <footer>
|
|
<small class="subtext">
|
|
by <a href="https://lzahq.tech" target="_blank">@lza_menace</a>
|
|
</small>
|
|
</footer> -->
|
|
{% endblock footer %} |