Files
i2p.www/i2p2www/pages/meetings/index.html
2016-01-02 18:06:19 +00:00

30 lines
1.3 KiB
HTML

{% extends "global/layout.html" %}
{% block title %}{{ _('Logs of past I2P meetings') }}{% endblock %}
{% block headextra %}
<link href="{{ get_url('meetings_atom') }}" type="application/atom+xml" rel="alternate" title="{{ _('I2P Meetings ATOM Feed') }}" />
{%- endblock %}
{% block content %}
<p>{% trans mtgforum='http://'+i2pconv('zzz.i2p')+'/forums/20' -%}
Regularly scheduled project meetings are held on the first Tuesday of every month at 8 PM UTC.
Anyone can schedule and
run a meeting, by posting the agenda in
<a href="{{ mtgforum }}">the meetings forum</a>.
{%- endtrans %}</p>
<p>{% trans blogindex=get_url('blog_index') -%}
If you have something to discuss, please find the developers on IRC in #i2p-dev.
<a href="{{ blogindex }}">Status updates</a> from developers are also available.
{%- endtrans %}</p>
<div class="underline"></div>
<ul class="infolist">
{%- macro meeting_url(m_id) -%}{{ get_url('meetings_show', id=m_id) }}{%- endmacro %}
{% 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>
{%- from "global/macros" import render_pagination with context -%}
{{ render_pagination(pagination) | safe }}
{% endblock %}