site/templates/index.html

24 lines
611 B
HTML
Raw Normal View History

2024-11-14 17:35:47 +01:00
{% extends "base.html" %}
{% block content %}
<img alt="A cirno fumo" src="/image/cirno-fumo.png" />
<br />
<p style="text-align: center; color: gray;">
I will be shitposting here shortly...
</p>
{% if section.pages | length > 1 %}
<h1>Blog</h1>
{% set section = get_section(path="blog/_index.md") %}
{% for page in section.pages %}
<a style="text-decoration: none; font-size: 1.2rem;" href="{{ page.permalink | safe }}">{{ page.title }}</a>
<br />
<span class="date">{{ page.date }}</span>
<br />
<br />
{% endfor %}
{% endif %}
{% endblock %}