2012-09-13 03:24:12 +00:00
|
|
|
{% extends "global/layout.html" %}
|
2013-01-18 03:42:02 +00:00
|
|
|
{% block title %}{% trans %}I2P Development Meeting {{ id }}{% endtrans %}{% endblock %}
|
2012-09-13 03:24:12 +00:00
|
|
|
{% block content %}
|
2012-09-13 12:38:36 +00:00
|
|
|
{% autoescape false %}
|
|
|
|
{% if header %}
|
|
|
|
{{ header | restructuredtext }}
|
|
|
|
{% endif %}
|
|
|
|
{% endautoescape %}
|
|
|
|
<div class="irclog">
|
2013-01-18 04:36:24 +00:00
|
|
|
<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>
|
2012-09-13 03:24:12 +00:00
|
|
|
{% endblock %}
|