summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorLibravatar Silas Bartha <[email protected]>2024-08-13 16:57:45 -0400
committerLibravatar Silas Bartha <[email protected]>2024-08-13 16:57:45 -0400
commitbaed7c3c8389fd1229cec2e9bb38ba7250da6582 (patch)
treeb051d92ab222e8cd7a0d77d106168661dce9d0e5 /templates/base.html
Initial switch to zola site
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..c74aceb
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8"/>
+ <title>silas</title>
+ <link rel="stylesheet" href="/style.css"/>
+ </head>
+ <body>
+ <section class="section">
+ <div class="container">
+ {% block content %} {% endblock %}
+ </div>
+ </section>
+ </body>
+</html>