blow/templates/index.html
Thomas Chartron 6a08ca892f update
2021-11-06 18:29:08 +01:00

11 lines
337 B
HTML

{% extends "layout.html" %}
{% block content %}
<div class="flex items-center flex-col">
<h1 class="text-xl text-bold">
{{ config.extra.index.title }}
</h1>
<img class="rounded-full h-16 w-16" src="{{ config.extra.index.image }}" alt="">
<p>Click <a href="/blog/">here</a> to see my posts.</p>
</div>
{% endblock content %}