aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-07 08:12:55 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-11-07 08:12:55 +0100
commita2e885e9ad36268148ec8e35b1572e3cd0465aa3 (patch)
treecf568894f5dc8254bbb136dd8e4af5ce8143e404
parentMinor improvements to the layout template. (diff)
downloadnewspipe-a2e885e9ad36268148ec8e35b1572e3cd0465aa3.tar.gz
newspipe-a2e885e9ad36268148ec8e35b1572e3cd0465aa3.tar.bz2
newspipe-a2e885e9ad36268148ec8e35b1572e3cd0465aa3.zip
Closes section HTML tag.
-rw-r--r--src/web/templates/home.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/home.html b/src/web/templates/home.html
index fe68861a..bc38d189 100644
--- a/src/web/templates/home.html
+++ b/src/web/templates/home.html
@@ -4,6 +4,6 @@
<link href="{{ url_for("static", filename="css/one-page-app.css") }}" rel="stylesheet" media="screen" />
{% endblock %}
{% block content %}
- <section id="newspipeapp" />
+ <section id="newspipeapp"></section>
<script type="text/javascript" src="{% if cdn != '' %}{{ cdn }}bundle.min.js{% else %}{{ url_for('static', filename = 'js/bundle.min.js') }}{% endif %}"></script>
{% endblock %}
bgstack15