aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-01-28 13:44:49 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-01-28 13:44:49 +0100
commit1c69bcadc1056d22bc7db96d8ca586b66bc81853 (patch)
tree2d1c4891e20761b8bb978ac669c0bb7a58ae46d5 /source
parentDisplay the absolute path of the result after a succesfull export. (diff)
downloadnewspipe-1c69bcadc1056d22bc7db96d8ca586b66bc81853.tar.gz
newspipe-1c69bcadc1056d22bc7db96d8ca586b66bc81853.tar.bz2
newspipe-1c69bcadc1056d22bc7db96d8ca586b66bc81853.zip
HTML5 compliant header.
Diffstat (limited to 'source')
-rw-r--r--source/templates/base.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/templates/base.html b/source/templates/base.html
index c6b33a82..ecc1bb0e 100644
--- a/source/templates/base.html
+++ b/source/templates/base.html
@@ -2,6 +2,7 @@
<!DOCTYPE html>
<html>
<head>
+ <meta charset="utf-8" />
%if header_text is UNDEFINED:
<title>pyAggr3g470r</title>
%elif header_text == 0:
@@ -9,9 +10,8 @@
%else:
<title>${header_text} - pyAggr3g470r</title>
%endif
- <link rel="stylesheet" type="text/css" href="/css/style.css" />
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
+ <link rel="stylesheet" href="/css/style.css" />
+ <script src="https://apis.google.com/js/plusone.js"></script>
</head>
<body>
<div class="right innerlogo">
@@ -25,4 +25,4 @@
<a href="https://bitbucket.org/cedricbonhomme/pyaggr3g470r/" rel="noreferrer" target="_blank">Source code</a> of pyAggr3g470r.</p>
</div>
</body>
-</html> \ No newline at end of file
+</html>
bgstack15