]> jfr.im git - irc/freenode/web-7.0.git/blob - templates/index.html
Links to archive
[irc/freenode/web-7.0.git] / templates / index.html
1 {% extends "base.html" %}
2 {% set title = config.name %}
3 {% block content %}
4 <div class="jumbotron">
5 <h2 class="child">Welcome to freenode, the new home of your
6 projects.</h2>
7 <div class="box-container">
8 <a class="box" href="about"><i class=
9 "fa fa-comment fa-4x"></i><br>
10 Chat</a> <a class="box" href="help"><i class=
11 "fa fa-question fa-4x"></i><br>
12 FAQ</a> <a class="box" href="contribute"><i class=
13 "fa fa-users fa-4x"></i><br>
14 Register a group</a>
15 </div>
16 </div>
17 <div class="main">
18 {% with article = get_module("news").articles[-1] %}
19 <p><b class="art"><a href="{{ article.url }}">{{ article.title }}</a></b>&nbsp;
20 <span class="art-date">{{ article.datetime }} by {{ article.author }}</span></p>
21 <p class="art-ingress">{{ article.render() }}</p>
22 {% endwith %}
23 <a href="{{ url_for("archive.html") }}" ckass="art-link"><i class="fa fa-rss"></i>
24 News Archive</a>
25 </div>
26 {% endblock content %}