diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2012-12-19 14:17:58 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2012-12-19 14:17:58 +0100 |
commit | 94b5e3462e52d32f28d20a0132460d3c2f4fd259 (patch) | |
tree | 7e1c54a5dba9c036d9019f83c738fada4d007532 /hyperkitty/templates | |
parent | 73b9de9309220b424f57c592b6553ba020767f38 (diff) | |
download | hyperkitty-94b5e3462e52d32f28d20a0132460d3c2f4fd259.tar.gz hyperkitty-94b5e3462e52d32f28d20a0132460d3c2f4fd259.tar.xz hyperkitty-94b5e3462e52d32f28d20a0132460d3c2f4fd259.zip |
Integrate the new logo
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/base.html | 1 | ||||
-rw-r--r-- | hyperkitty/templates/index.html | 3 |
2 files changed, 4 insertions, 0 deletions
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 @@ <title>{% block title %}{{ app_name|title }}{% endblock %}</title> <meta name="author" content="" /> <meta name="dc.language" content="en" /> + <link rel="shortcut icon" href="{{ STATIC_URL }}img/favicon.ico" /> <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/normalize.css" /> <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/bootstrap.css" /> <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/style.css" /> 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 %} + <h1>{% trans 'Lists' %}</h1> <table class="table table-bordered table-striped"> @@ -17,6 +18,8 @@ </tbody> </table> +<img id="logo" alt="HyperKitty" src="{{STATIC_URL}}img/logo.png" /> + {% endblock %} {# vim: set noet: #} |