summaryrefslogtreecommitdiffstats
path: root/htdocs/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'htdocs/base.html')
-rw-r--r--htdocs/base.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/htdocs/base.html b/htdocs/base.html
index cc85064..7a3c97f 100644
--- a/htdocs/base.html
+++ b/htdocs/base.html
@@ -7,10 +7,12 @@
{{ define "title" }}<title>samanthony.xyz</title>{{ end }}
{{ template "title" }}
+ <link rel="stylesheet" href="/css/style.css">
<!-- Child templates can apply their own styles -->
{{ define "style" }}{{ end }}
{{ template "style" }}
- <link rel="stylesheet" href="/style.css">
+ <!-- Code syntax highlighting -->
+ <link rel="stylesheet" href="/css/syntax.css">
</head>
<body>
<nav>
@@ -28,6 +30,8 @@
{{ end }}
<hr>
</nav>
- {{ template "body_content" }}
+ <main>
+ {{ template "body_content" }}
+ </main>
</body>
</html>