Parent: [8dc6aa] (diff)

Child: [213f64] (diff)

Download this file

index.html    21 lines (17 with data), 632 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
{% extends g.theme.master %}
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}}{% endblock %}
{% block header %}{{c.project.name}} / {{c.app.config.options.mount_label}}{% endblock %}
{% block content %}
<p>
{{ c.project.name }} / {{c.app.config.options.mount_label }} is
hosted on FreeNode IRC channel
<a href="http://webchat.freenode.net/?channels={{c.app.channel.channel}}">#{{c.app.channel.channel}}</a>
</p>
<ul>
{% for msg in messages %}
<li>
{{msg.timestamp.isoformat(' ')}}: {{msg.sender.split('!')[0]}}: {{msg.text}}
</li>
{% endfor %}
</ul>
{% endif %}