mirror of
https://github.com/avitex/avitex.github.io
synced 2024-11-16 17:39:57 +00:00
14 lines
549 B
HTML
14 lines
549 B
HTML
{% extends "root.html" %}
|
|
{% import "macros.html" as macros %}
|
|
{% block title %}{{ config.description }} - {{ config.title }}{% endblock %}
|
|
{% block meta_description %}The personal homepage of {{config.extra.author}}{% endblock meta_description %}
|
|
{% block body %}
|
|
<main class="home-page">
|
|
<img alt="brain logo" src="{{ get_url(path="brain-256px.png") | safe }}" />
|
|
<div class="inner">
|
|
<h1>{{config.extra.author}}</h1>
|
|
{% include "partials/site-nav.html" %}
|
|
</div>
|
|
</main>
|
|
{% endblock body %}
|