Added quickstart from blag

This commit is contained in:
Liliesh 2025-07-06 07:56:58 +02:00
parent 1c7cc625d5
commit fba3ddb1a5
Signed by: liliesh
GPG key ID: 680387646C7BAE8E
19 changed files with 607 additions and 8 deletions

25
templates/index.html Normal file
View file

@ -0,0 +1,25 @@
{% extends "base.html" %}
{% block title %}{{ site.title }}{% endblock %}
{% block content %}
{% for entry in archive[:15] %}
<article>
<header>
<time datetime="{{ entry.date }}">{{ entry.date.date() }}</time>
<div>
<h2><a href="{{ entry.dst }}">{{ entry.title }}</a></h2>
{% if entry.description %}
<p>— {{ entry.description }}</p>
{% endif %}
</div>
</header>
</article>
{% endfor %}
<p><a href="/archive.html">all articles...</a></p>
{% endblock %}