17 lines
374 B
HTML
17 lines
374 B
HTML
{% extends "global/layout.html" %}
|
|
{% block title %}{% trans %}I2P Development Meeting {{ id }}{% endtrans %}{% endblock %}
|
|
{% block content %}
|
|
{% autoescape false %}
|
|
{% if header %}
|
|
{{ header | restructuredtext }}
|
|
{% endif %}
|
|
{% endautoescape %}
|
|
<div class="irclog">
|
|
<h1>{{ _('Full IRC Log') }}</h1>
|
|
<pre>
|
|
{{ log|escape }}
|
|
{# TODO: pygments #}
|
|
</pre>
|
|
</div>
|
|
{% endblock %}
|