Files
I2P_Website/i2p2www/pages/meetings/index.html

17 lines
793 B
HTML
Raw Normal View History

{% extends "global/layout.html" %}
2008-01-31 20:38:37 +00:00
{% block title %}Meetings{% endblock %}
{% block content %}
<h1>Logs of past I2P meetings</h1>
<p>Regularly scheduled meetings are not being held at this time.
If you have something to discuss, please find the developers on IRC in #i2p-dev.
<a href="{{ url_for('blog_index', lang=g.lang) }}">Status updates</a> from developers are also available.
</p><div class="underline"></div>
2009-06-12 21:54:49 +00:00
<ul class="infolist">
2012-09-13 21:26:21 +00:00
{%- macro meeting_url(m_id) -%}{{ url_for('meetings_show', lang=g.lang, id=m_id) }}{%- endmacro -%}
2012-12-06 23:28:08 +00:00
<!-- {{ meetings }} -->
{% for meeting in meetings -%}
<li><a href="{{ meeting_url(meeting['id']) }}">Meeting {{ meeting['id'] }}</a>{% if meeting['date'] %} - {{ meeting['date'].strftime("%B %d, %Y") }}{% endif %}</li>
{%- endfor %}
</ul>
{% endblock %}