diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 6b30a55..36a4a3d 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,5 +1,6 @@
{{ define "main" }}
{{ .Title }}
+
{{ partial "metadata.html" . }}
{{ if $.Params.cws }}
@@ -12,4 +13,4 @@
{{ else }}
{{ .Content }}
{{ end }}
-{{ end }}
\ No newline at end of file
+{{ end }}
diff --git a/static/css/style.css b/static/css/style.css
index 9992485..fe18fb6 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -82,6 +82,10 @@ header h1 {
text-align: center;
}
+h3 {
+ font-size: larger;
+}
+
code {
border-radius: 5px;
padding: 1pt;
@@ -196,6 +200,7 @@ li:first-child {
}
p {
font-size: 16pt;
+ font-family: sans-serif;
}
body {
@@ -214,4 +219,4 @@ label {
#cw:checked + label {
display: block;
-}
\ No newline at end of file
+}