blow/templates/index.html

12 lines
337 B
HTML
Raw Normal View History

2021-11-03 19:55:59 +00:00
{% extends "layout.html" %}
2021-11-04 18:45:17 +00:00
{% block content %}
2021-11-06 17:29:08 +00:00
<div class="flex items-center flex-col">
2021-11-06 17:26:24 +00:00
<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>
2021-11-04 18:45:17 +00:00
{% endblock content %}