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

30 lines
1.3 KiB
HTML
Raw Normal View History

{% extends "global/layout.html" %}
2014-01-09 19:39:15 +00:00
{% 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 %}
2014-01-10 07:00:33 +00:00
<p>{% trans mtgforum='http://'+i2pconv('zzz.i2p')+'/forums/20' -%}
2016-01-02 18:06:19 +00:00
Regularly scheduled project meetings are held on the first Tuesday of every month at 8 PM UTC.
Anyone can schedule and
2014-01-10 07:00:33 +00:00
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>
2009-06-12 21:54:49 +00:00
<ul class="infolist">
{%- macro meeting_url(m_id) -%}{{ get_url('meetings_show', id=m_id) }}{%- endmacro %}
2013-01-09 01:21:03 +00:00
{% for meeting in meetings %}
2012-12-06 23:28:08 +00:00
<li><a href="{{ meeting_url(meeting['id']) }}">Meeting {{ meeting['id'] }}</a>{% if meeting['date'] %} - {{ meeting['date'].strftime("%B %d, %Y") }}{% endif %}</li>
2013-01-09 01:21:03 +00:00
{% endfor %}
</ul>
{%- from "global/macros" import render_pagination with context -%}
{{ render_pagination(pagination) | safe }}
{% endblock %}