aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-08 21:08:48 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-08 21:08:48 +0100
commit7b35ac1bdf8ee07e2a311a8a72c8fdc887d1b6ad (patch)
tree132a8d394157496fea37aa395218525210f7adf2
parentUpdated NEWS.rst. (diff)
downloadnewspipe-7b35ac1bdf8ee07e2a311a8a72c8fdc887d1b6ad.tar.gz
newspipe-7b35ac1bdf8ee07e2a311a8a72c8fdc887d1b6ad.tar.bz2
newspipe-7b35ac1bdf8ee07e2a311a8a72c8fdc887d1b6ad.zip
Misc changes to the layout template.
-rw-r--r--pyaggr3g470r/templates/layout.html11
1 files changed, 1 insertions, 10 deletions
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html
index 9cfa2eae..598c6d48 100644
--- a/pyaggr3g470r/templates/layout.html
+++ b/pyaggr3g470r/templates/layout.html
@@ -4,19 +4,12 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta name="description" content="pyAggr3g470r is a news aggregator with a Web interface based on Flask. It can be
-deployed on Heroku or on a traditional server." />
+ <meta name="description" content="pyAggr3g470r is a web-based news aggregator." />
<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" />
-
<!-- Add custom CSS here -->
<style>
body {
@@ -79,10 +72,8 @@ deployed on Heroku or on a traditional server." />
font-size: 80%;
}
</style>
-
</head>
{% endblock %}
-
<body data-spy="scroll" data-target="#affix-nav">
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
bgstack15