mirror of
https://github.com/tchartron/blow
synced 2024-11-23 21:03:16 +00:00
11 lines
337 B
HTML
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 %}
|