aboutsummaryrefslogtreecommitdiff
path: root/allium/templates/contact.html
diff options
context:
space:
mode:
Diffstat (limited to 'allium/templates/contact.html')
-rw-r--r--allium/templates/contact.html26
1 files changed, 19 insertions, 7 deletions
diff --git a/allium/templates/contact.html b/allium/templates/contact.html
index d060a2d..cc3edd1 100644
--- a/allium/templates/contact.html
+++ b/allium/templates/contact.html
@@ -6,10 +6,22 @@
{% set contact = 'none' %}
{% endif %}
{% block title %}Tor Relays :: Contact {{ contact_hash }}{% endblock %}
-{% block header %}<a href="../../">Home</a> :: Contact {{ contact_hash }}{%
-endblock %}
-{% block description %}Relays with contact info <code>{{ contact }}</code> are
-responsible for ~{{ bandwidth }} MB/s of traffic, with {% if middle_count
-> 0 %}{{ middle_count }} middle relay{% if middle_count > 1 %}s{% endif %}{% if
-exit_count > 0 %} and {% endif %}{% endif %}{% if exit_count > 0 %}{{ exit_count
-}} exit relay{% if exit_count > 1 %}s{% endif %}{% endif %}.{% endblock %}
+{% block header %}
+ <a href="../../">Home</a> :: Contact {{ contact_hash }}{% endblock %}
+ {% block description %}
+ Relays with contact info <code>{{ contact }}</code> are
+ responsible for ~{{ bandwidth }} MB/s of traffic, with
+ {% if middle_count > 0 %}
+ {{ middle_count }} middle relay
+ {%- if middle_count > 1 -%}s{%- endif -%}
+ {% if exit_count > 0 %}
+ and
+ {% endif %}
+ {% endif %}
+ {% if exit_count > 0 %}
+ {{ exit_count
+ }} exit relay
+ {%- if exit_count > 1 -%}s{%- endif -%}
+ {%- endif -%}
+ .
+ {% endblock %}