Files @ 67ead6cfe058
Branch filter:

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

Dennis Fink
Added GPL Boilerplate to python files
{% 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">
    <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-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 %}