1
0
mirror of https://github.com/avitex/avitex.github.io synced 2024-09-28 02:39:57 +00:00
1bit.pw/templates/content.html

15 lines
549 B
HTML
Raw Normal View History

2020-04-11 17:22:25 +00:00
{% extends "root.html" %}
{% import "macros.html" as macros %}
{% block body %}
<div class="container">
<header class="site-header">
2020-04-14 02:23:38 +00:00
<a class="brand" href="{{ get_url(path="/") | safe }}">
<img alt="brain logo" src="{{ get_url(path="brain-48px.png") | safe }}" />
</a>
2020-04-11 17:22:25 +00:00
{% include "partials/site-nav.html" %}
</header>
2020-04-14 02:23:38 +00:00
<main class="content">
{% block content %}{{ section.content | safe }}{% endblock content %}
2020-04-11 17:22:25 +00:00
</main>
</div>
{% endblock body %}