aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2013-12-28 15:11:55 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2013-12-28 15:11:55 +0100
commitbaa97e4672ffecf2b1669a2876de1ebb352125aa (patch)
treebfb2da555d094c33485e697086e667b7dcef113c /pyaggr3g470r/templates
parentAdded favicon.png. (diff)
downloadnewspipe-baa97e4672ffecf2b1669a2876de1ebb352125aa.tar.gz
newspipe-baa97e4672ffecf2b1669a2876de1ebb352125aa.tar.bz2
newspipe-baa97e4672ffecf2b1669a2876de1ebb352125aa.zip
Added favicon link in the layout template.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r--pyaggr3g470r/templates/layout.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html
index 7424b00d..5ed0ee9f 100644
--- a/pyaggr3g470r/templates/layout.html
+++ b/pyaggr3g470r/templates/layout.html
@@ -3,12 +3,14 @@
{% block head %}
<head>
<meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="description" content="pyAggr3g470r">
- <meta name="author" content="">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <meta name="description" content="pyAggr3g470r" />
+ <meta name="author" content="" />
<title>{% if head_title %}{{ head_title }} - {% endif %}pyAggr3g470r</title>
+ <link rel="shortcut icon" href="{{ url_for('.static', filename='img/favicon.png') }}" />
+
<!-- Bootstrap core CSS -->
<link href="{{ url_for('.static', filename = 'css/bootstrap.css') }}" rel="stylesheet" media="screen" />
@@ -21,7 +23,6 @@
{% endblock %}
<body>
-
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
bgstack15