]> git.ipfire.org Git - ipfire.org.git/blobdiff - templates/planet/index.html
Introduce autotools
[ipfire.org.git] / templates / planet / index.html
diff --git a/templates/planet/index.html b/templates/planet/index.html
deleted file mode 100644 (file)
index dc3fb45..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}{{ _("IPFire Planet") }}{% end block %}
-
-{% block container %}
-<div class="container">
-       <h2 class="display-2 text-center features-content">The Blog of the IPFire Team</h2>
-       
-       {% for entry in entries %}
-               {% module PlanetEntry(entry) %}
-       {% end %}
-       
-       <div class="col-9 my-4">
-               <div class="row d-flex flex-row justify-content-between">
-                       <a href="?offset={{ offset }}">&larr; {{ _("Older posts") }}</a>
-                       <a href="?offset={{ offset - (2 * limit) }}">{{ _("Newer posts") }} &rarr;</a>
-               </div>
-       </div>
-
-       <div class="btn-toolbar mb-6">
-               <div class="btn-group">
-                       <button type="button" class="btn btn-light"><a href="/hottest">{{ _("Hottest posts") }}</a></button>
-
-                       {% for y in range(year, 2010, -1) %}
-                               <button tyle="button" class="btn btn-light"><a href="/year/{{ y }}">{{ y }}</a></button>
-                       {% end %}
-               </div>
-       </div>
-</div>
-{% end block %}