]> jfr.im git - irc/freenode/web-7.0.git/blobdiff - templates/index.html
do titles a bit differently
[irc/freenode/web-7.0.git] / templates / index.html
index 3e09360a989fb62d4299fc766f7958cd11d3a786..c2bb7d2e909a635c63d2c3a3a2db151500c173b5 100644 (file)
@@ -1,25 +1,33 @@
 {% extends "base.html" %}
-{% set title = config.name %}
+{% block title %}{{ config.name }}{% endblock %}
+{% import "artinfo.html" as artinfo %}
 {% block content %}
 <div class="jumbotron">
-    <h2 class="child">Welcome to freenode, the new home of your projects.</h2>
-
-
+    <h2 class="child">Welcome to freenode&thinsp;—&thinsp;supporting free and open source communities since 1998</h2>
     <div class="box-container">
-        <a class="box" href="about">
-            <i class="fa fa-comment fa-4x"></i><br>Chat
+        <a class="box" href="{{ url_for("faq/chat") }}">
+            <i class="fa fa-comment fa-4x"></i>
+            <div>Chat</div>
         </a>
-        <a class="box" href="help">
-            <i class="fa fa-question fa-4x"></i><br>FAQ
+        <a class="box" href="{{ url_for("pages/soon") }}">
+            <i class="fa fa-users fa-4x"></i>
+            <div>Register a group</div>
         </a>
-        <a class="box" href="contribute">
-            <i class="fa fa-users fa-4x"></i><br>Register a group
+        <a class="box" href="{{ url_for("faq") }}">
+            <i class="fa fa-question fa-4x"></i>
+            <div href="{{ url_for("faq") }}">FAQ</div>
         </a>
     </div>
 </div>
-
-
 <div class="main">
-    {{ get_module("news").articles[-1].render() }}
+    {% with article = get_module("news").articles[-1] %}
+    {{ artinfo.info(article) }}
+    <div class="art-body">{{ article.render() }}</div>
+    {#
+    <p class="art-links">
+        <a href="{{ next }}">Next</a>&nbsp;
+        <a href="{{ previous }}">Previous</a>&nbsp;
+    #}
+    {% endwith %}
 </div>
 {% endblock content %}