Files
I2P_Website/www.i2p2/i2p2www/pages/blog/index.html

11 lines
289 B
HTML
Raw Normal View History

{% extends "global/layout.html" %}
{% block title %}Blog Index{% endblock %}
{% block content %}
<p>Some descriptive text.</p>
<ul class="infolist">
{% for entry in entries -%}
<li><a href="{{ url_for('blog_entry', slug=entry) }}">{{ entry }}</a></li>
{%- endfor %}
</ul>
{% endblock %}