# HG changeset patch # User kahpa # Date 2015-10-07 21:48:38 # Node ID 601aed05195d86bad2a7a620ba5aef0d0750fd64 # Parent 12993f20d8099cd8785ae21a2fe97fabe3990c11 added mirrors page diff --git a/ennstatus/root/views.py b/ennstatus/root/views.py --- a/ennstatus/root/views.py +++ b/ennstatus/root/views.py @@ -52,7 +52,11 @@ def membership(): return render_template('root/membership.html', form=form) +@root_page.route('/mirrors') +def mirrors(): + return render_template('root/mirrors.html') + @root_page.route('/contact', methods=('GET', 'POST')) def contact(): diff --git a/ennstatus/templates/base.html b/ennstatus/templates/base.html --- a/ennstatus/templates/base.html +++ b/ennstatus/templates/base.html @@ -53,7 +53,7 @@
  • Statistics
  • -
  • Mirrors
  • +
  • Mirrors
  • Wiki
  • About Ennstatus
  • diff --git a/ennstatus/templates/root/mirrors.html b/ennstatus/templates/root/mirrors.html new file mode 100644 --- /dev/null +++ b/ennstatus/templates/root/mirrors.html @@ -0,0 +1,24 @@ +{% extends "base.html" %} + +{% set title = "Partners" %} + +{% block content %} +
    + Partners +

    Mirrors

    +
    +
    +

    Mirrors

    +

    In addition to our Tor relays we are providing mirrors for some popular services.

    +
    +
    torproject.lu
    +
    This is a mirror of the the Tor Project's main website torproject.org
    +
    +
    tails.enn.lu
    +
    A Tails Download mirror. Tails is a live operating system, that you can start on almost any computer from a DVD, USB stick, or SD card. It aims at preserving your privacy and anonymity. Learn more about Tails
    +
    +
    globe.enn.lu
    +
    Globe is a Tor relay and bridge explorer.
    +
    +
    +{% endblock %}