summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html13
-rw-r--r--templates/index.html13
2 files changed, 26 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..2e72598
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <link rel="stylesheet" href="/simple.min.css" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <meta charset="utf-8" />
+ <title>Archive - Boutalas</title>
+ </head>
+
+ <body>
+ {% block body %} {% endblock %}
+ </body>
+</html>
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..45d963e
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %} {% block body %}
+<section>
+ <h1>Archive of Nikolas Boutalas</h1>
+ <p>Opinions are (hopefully) my own.</p>
+</section>
+
+<section>
+ <h2>Links</h2>
+ <ul>
+ <li><a href="https://git.boutalas.com">Repositories</a></li>
+ </ul>
+</section>
+{% endblock body %}