From a8bd912cc37c736a9fbc97ed8fb66de2a8420484 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 29 Sep 2013 21:38:50 +0200 Subject: [PATCH] main page: misc cosmetic changes smaller icons, maybe they work for mobile then, too fixes a few typos remade IP addr display --- nsupdate/main/templates/main/home.html | 31 ++++++++++++-------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/nsupdate/main/templates/main/home.html b/nsupdate/main/templates/main/home.html index bf7306a..a0be16d 100644 --- a/nsupdate/main/templates/main/home.html +++ b/nsupdate/main/templates/main/home.html @@ -4,42 +4,39 @@ {% block content %}
-

+

World Wide Web

- nsupdate.info is a free and open-source dynamic DNS service with IPv4 and IPv6 support. + nsupdate.info is a free and open-source dynamic DNS service with IPv4 and IPv6 support.

-

+

Awesomeness

- Powered by python, the magical django pony and a stupid three columned icon landing page. + Powered by Python, the magical Django Pony and a stupid three columned icon landing page.

-

-

The Throphy Is A Lie

+

+

The Trophy Is A Lie

- nsupdate.info is winner of the Django-Dash 2013 with the highest score in the history of the competition. + nsupdate.info is winner of the Django-Dash 2013 with the highest score in the history of the competition.


-
-

HeyHo!

- {% if request.session.ipv4 and request.session.ipv6 %} -

We think this are your IPs:

- {% elif request.session.ipv4 or request.session.ipv6 %} -

We think this is your IP:

- {% endif %} - +
{% if request.session.ipv4 %} -

{{request.session.ipv4}}

+

Your IPv4 address:   {{request.session.ipv4}}

+ {% else %} +

Your IPv4 address:   unknown

{% endif %} {% if request.session.ipv6 %} -

{{request.session.ipv6}}

+

Your IPv6 address:   {{request.session.ipv6}}

+ {% else %} +

Your IPv6 address:   unknown

{% endif %}