1
0
mirror of https://github.com/avitex/avitex.github.io synced 2024-09-28 10:49:58 +00:00
1bit.pw/templates/index.html

14 lines
549 B
HTML
Raw Normal View History

2020-04-11 17:22:25 +00:00
{% extends "root.html" %}
2018-08-22 13:30:07 +00:00
{% import "macros.html" as macros %}
2020-04-11 17:22:25 +00:00
{% block title %}{{ config.description }} - {{ config.title }}{% endblock %}
2020-04-14 02:23:38 +00:00
{% block meta_description %}The personal homepage of {{config.extra.author}}{% endblock meta_description %}
2020-04-11 17:22:25 +00:00
{% block body %}
<main class="home-page">
2020-04-14 02:23:38 +00:00
<img alt="brain logo" src="{{ get_url(path="brain-256px.png") | safe }}" />
2020-04-11 17:22:25 +00:00
<div class="inner">
2020-04-14 02:23:38 +00:00
<h1>{{config.extra.author}}</h1>
2020-04-11 17:22:25 +00:00
{% include "partials/site-nav.html" %}
</div>
</main>
2020-04-14 02:23:38 +00:00
{% endblock body %}