blog/templates/home.html
2025-03-05 15:41:26 +01:00

37 lines
No EOL
612 B
HTML

{% extends 'base.html' %}
{% block head %}
<title>Home</title>
<style>
ul {
list-style-type: none;
}
li {
padding-left: 1.5em;
padding-bottom: 0.2em;
}
h3 {
padding-bottom: 0.1em;
}
a {
color: inherit;
}
</style>
{% endblock %}
{% block content %}
👋, Welcome here, you can see it's a mess
<br />
<br />
{% for category_name, articles in categories %}
<h3>{{ category_name }}</h3>
<ul>
{% for article in articles %}
<li><a href="{{ url_for('article', article_id=article.template) }}">{{article.title}}</a></li>
{% endfor %}
</ul>
{% endfor %}
{% endblock %}