]> jfr.im git - irc/freenode/web-7.0.git/blob - templates/index.html
fix every problem with the footer ever
[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">
9 <i class="fa fa-comment fa-4x"></i>
10 <span>Chat</span>
11 </a>
12 <a class="box" href="help">
13 <i class="fa fa-question fa-4x"></i>
14 <span>FAQ</span>
15 </a>
16 <a class="box" href="contribute">
17 <i class="fa fa-users fa-4x"></i>
18 <span>Register a group</span>
19 </a>
20 </div>
21 </div>
22 <div class="main">
23 {% with article = get_module("news").articles[-1] %}
24 <p><b class="art"><a href="{{ article.url }}">{{ article.title }}</a></b>&nbsp;
25 <span class="art-date">{{ article.datetime }} by {{ article.author }}</span></p>
26 <p class="art-ingress">{{ article.render() }}</p>
27 {#
28 <p class="art-links">
29 <a href="{{ next }}">Next</a>&nbsp;
30 <a href="{{ previous }}">Previous</a>&nbsp;
31 #}
32 {% endwith %}
33 <a href="{{ url_for("archive") }}" ckass="art-link">
34 News Archive</a>
35 </div>
36 {% endblock content %}