aboutsummaryrefslogtreecommitdiff
path: root/source/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'source/templates/base.html')
-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