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

16 lines
386 B
HTML
Raw Normal View History

{% extends "global/layout.html" %}
{% block title %}{% trans %}I2P Development Meeting {{ id }}{% endtrans %}{% endblock %}
{% block content %}
2012-09-13 12:38:36 +00:00
{% autoescape false %}
{% if header %}
{{ header | restructuredtext }}
{% endif %}
{% endautoescape %}
<div class="irclog">
<h1>{{ _('Full IRC Log') }}</h1>
2013-08-06 04:33:52 +00:00
{% highlight lang='irc' %}
2012-09-13 12:38:36 +00:00
{{ log|escape }}
2013-08-06 04:33:52 +00:00
{% endhighlight %}
2012-09-13 12:38:36 +00:00
</div>
{% endblock %}