From 94b5e3462e52d32f28d20a0132460d3c2f4fd259 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Wed, 19 Dec 2012 14:17:58 +0100 Subject: Integrate the new logo --- hyperkitty/static/css/style.css | 4 + hyperkitty/static/img/favicon.ico | Bin 0 -> 5174 bytes hyperkitty/static/img/hyperkitty-favicon.svg | 541 +++++++++++ hyperkitty/static/img/hyperkitty-logo.svg | 1238 ++++++++++++++++++++++++++ hyperkitty/static/img/logo.png | Bin 0 -> 18432 bytes hyperkitty/templates/base.html | 1 + hyperkitty/templates/index.html | 3 + 7 files changed, 1787 insertions(+) create mode 100644 hyperkitty/static/img/favicon.ico create mode 100644 hyperkitty/static/img/hyperkitty-favicon.svg create mode 100644 hyperkitty/static/img/hyperkitty-logo.svg create mode 100644 hyperkitty/static/img/logo.png diff --git a/hyperkitty/static/css/style.css b/hyperkitty/static/css/style.css index 68f13e2..80dd7ed 100644 --- a/hyperkitty/static/css/style.css +++ b/hyperkitty/static/css/style.css @@ -4,6 +4,10 @@ body { background-color: white; } +#logo { + display: block; + margin: 80px auto; +} ul.nav.auth { float: right; diff --git a/hyperkitty/static/img/favicon.ico b/hyperkitty/static/img/favicon.ico new file mode 100644 index 0000000..f7a5201 Binary files /dev/null and b/hyperkitty/static/img/favicon.ico differ diff --git a/hyperkitty/static/img/hyperkitty-favicon.svg b/hyperkitty/static/img/hyperkitty-favicon.svg new file mode 100644 index 0000000..de066b1 --- /dev/null +++ b/hyperkitty/static/img/hyperkitty-favicon.svg @@ -0,0 +1,541 @@ + + + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/hyperkitty/static/img/hyperkitty-logo.svg b/hyperkitty/static/img/hyperkitty-logo.svg new file mode 100644 index 0000000..4055b7b --- /dev/null +++ b/hyperkitty/static/img/hyperkitty-logo.svg @@ -0,0 +1,1238 @@ + + + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/hyperkitty/static/img/logo.png b/hyperkitty/static/img/logo.png new file mode 100644 index 0000000..4b24b35 Binary files /dev/null and b/hyperkitty/static/img/logo.png differ diff --git a/hyperkitty/templates/base.html b/hyperkitty/templates/base.html index ed06341..d00358e 100644 --- a/hyperkitty/templates/base.html +++ b/hyperkitty/templates/base.html @@ -6,6 +6,7 @@ {% block title %}{{ app_name|title }}{% endblock %} + diff --git a/hyperkitty/templates/index.html b/hyperkitty/templates/index.html index 4318495..433cf27 100644 --- a/hyperkitty/templates/index.html +++ b/hyperkitty/templates/index.html @@ -1,6 +1,7 @@ {% extends "base.html" %} {% load i18n %} {% block content %} +

{% trans 'Lists' %}

@@ -17,6 +18,8 @@
+ + {% endblock %} {# vim: set noet: #} -- cgit