aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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