]> jfr.im git - irc/freenode/web-7.0.git/blob - templates/index.html
Update policies.md
[irc/freenode/web-7.0.git] / templates / index.html
1 {% extends "base.html" %}
2 {% block title %}{{ config.name }}{% endblock %}
3 {% import "artinfo.html" as artinfo %}
4 {% block content %}
5 <div class="jumbotron jindex">
6 <h2 class="child">Welcome to <img alt="freenode" class="tlogo" src="{{ url_for("static/img/logos/coloured-alphabg.svg") }}">&thinsp;&thinsp;supporting free and open source communities since 1998</h2>
7 <div class="box-container">
8 <a class="box" href="//webchat.freenode.net">
9 <i class="fa fa-comments fa-4x"></i>
10 <span>Chat</span>
11 </a>
12 <a class="box" href="{{ url_for("pages/groupreg") }}">
13 <i class="fa fa-users fa-4x"></i>
14 <span>Register a group</span>
15 </a>
16 <a class="box" href="{{ url_for("kb/index/all") }}">
17 <i class="fa fa-question fa-4x"></i>
18 <span>Knowledge Base</span>
19 </a>
20 </div>
21 </div>
22 <div class="main">
23 {% with article = get_module("news").articles[-1] %}
24 <div class="art-info">{{ artinfo.info(article) }}</div>
25 <div class="art-body">{{ article.render() }}</div>
26 <div class="art-nav">
27 <span></span>
28 <a href="{{ url_for("archive") }}">view archive</a>
29 <span></span>
30 </div>
31 {% endwith %}
32 </div>
33 {% endblock content %}