mirror of
https://github.com/avitex/avitex.github.io
synced 2024-11-16 09:29:57 +00:00
15 lines
549 B
HTML
15 lines
549 B
HTML
{% extends "root.html" %}
|
|
{% import "macros.html" as macros %}
|
|
{% block body %}
|
|
<div class="container">
|
|
<header class="site-header">
|
|
<a class="brand" href="{{ get_url(path="/") | safe }}">
|
|
<img alt="brain logo" src="{{ get_url(path="brain-48px.png") | safe }}" />
|
|
</a>
|
|
{% include "partials/site-nav.html" %}
|
|
</header>
|
|
<main class="content">
|
|
{% block content %}{{ section.content | safe }}{% endblock content %}
|
|
</main>
|
|
</div>
|
|
{% endblock body %} |