summaryrefslogtreecommitdiffstats
path: root/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..a921ed6
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width initial-scale=1" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+
+ <title>{% if page.title %}{{ page.title }}{% else %}{{ config.title }}{% endif %}</title>
+ <meta name="description" content="{{ config.description }}">
+
+ <link rel="stylesheet" type="text/css" href="/styles.css">
+ {# <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}"> #}
+ </head>
+
+ <body>
+
+ {#% include header.html %#}
+
+ <div class="page-content">
+ <div class="wrapper">
+ {% block content %}
+ {% endblock content %}
+ </div>
+ </div>
+
+ {#% include footer.html %#}
+
+ </body>
+
+</html>