website/templates/index.html

13 lines
369 B
HTML
Raw Permalink Normal View History

2021-06-01 23:15:46 +02:00
{% extends "template.html" %}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
<p>Welcome to my website</p>
<span class="index">
{% for name,_date in _paths.items() %}
<p><a href="{{ url_for('blog', blog_item=name) }}">{{ _date.date() }}&emsp;&emsp;{{ name }}</a></p>
{% endfor %}
</span>
{% endblock %}