Files @ 437df41f50a6
Branch filter:

Location: FVDE/ennstatus/ennstatus/templates/root/mirrors.html

Dennis Fink
Merged dev
{# Ënnstatus
   Copyright (C) 2015  Dennis Fink

   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
#}

{% extends "base.html" %}

{% set title = "Partners" %}

{% if '.onion' in request.url_root %}
  {% set globe_url = config['ENNSTATUS_GLOBE_ONION_ADDRESS'] %}
{% elif '.bit' in request.url_root %}
  {% set globe_url = config['ENNSTATUS_GLOBE_BIT_ADDRESS'] %}
{% else %}
  {% set globe_url = "globe.enn.lu" %}
{% endif %}

{% block content %}
  <div class="col-md-4 visible-md visible-lg">
    <img src="{{ url_for('static', filename='images/Services.png') }}" class="img-responsive img-rounded center-block" alt="Partners" width="160"></img>
    <div class="text-center">
      <h2>Mirrors</h2>
    </div>
  </div>
  <div class="col-sm-12 col-md-8">
    <h2>Mirrors</h2>
    <p class="lead">In addition to our Tor relays we are providing mirrors for some popular services.</p>
    <dl>
      <dt><a href="http://torproject.lu" target="_blank">torproject.lu</a></dt>
      <dd>This is a mirror of the the Tor Project's main website torproject.org</dd>
      <br>
      <dt><a href="http://tails.c3l.lu/" target="_blank">tails.enn.lu</a></dt>
      <dd>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. <a href="https://tails.boum.org/" target="blank">Learn more about Tails</a></dd>
      <br>
      <dt><a href="//{{ globe_url }}" target="_blank">globe.enn.lu</a></dt>
      <dd>Globe is a Tor relay and bridge explorer.</dd>
    </dl>
  </div>
{% endblock %}