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.
23 lines
558 B
HTML
23 lines
558 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 %}
|
|
<div class="heading-text">{{ page.description }}</div>
|
|
{{ 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 %} |