Files
I2P_Website/wblog/index.html
str4d 488e647c34 merge of '815d110b12ab9f27cad1cb3511b3027c8db4d2b3'
and 'be7a16368a772fa456776fb0576b5a587c6d49e7'
2012-09-12 22:56:03 +00:00

11 lines
289 B
HTML

{% 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 %}