2012-09-13 03:24:12 +00:00
|
|
|
{% extends "global/layout.html" %}
|
2012-09-13 12:38:36 +00:00
|
|
|
{% block title %}I2P Development Meeting {{ id }}{% 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">
|
2012-09-13 03:24:12 +00:00
|
|
|
<pre>
|
2012-09-13 12:38:36 +00:00
|
|
|
{{ log|escape }}
|
|
|
|
{# TODO: pygments #}
|
2012-09-13 03:24:12 +00:00
|
|
|
</pre>
|
2012-09-13 12:38:36 +00:00
|
|
|
</div>
|
2012-09-13 03:24:12 +00:00
|
|
|
{% endblock %}
|