diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..d88e2be --- /dev/null +++ b/content/about.md @@ -0,0 +1,13 @@ +--- +title: About +--- +## About the Site + +Anna and the Bunches is a self-indulgent blog about technology, with occasional forays into games and media. + +I like to tell myself it is intelligently written, witty, and deeply interesting, but I’ve been known to lie. Caveat lector. + + +## About the Author + +Everything here is written by me, Anna, a feminist witch in my 30s who spends my days writing software. My interests include, but are not limited to: programming, video gaming, table-top roleplaying, speculative fiction, linguistics, strategy board games, hiking, and the simultaneous application of contradictory, overlapping worldviews. diff --git a/layouts/_default/li.html b/layouts/_default/li.html new file mode 100755 index 0000000..5c65bf3 --- /dev/null +++ b/layouts/_default/li.html @@ -0,0 +1,16 @@ +
+
+

{{ .Title }}

+ +
+
+ {{ .Summary | plainify | safeHTML }} +
+ {{ if .Truncated }} + Read more + {{ end }} +
diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100755 index 0000000..2b594d8 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,57 @@ +{{ partial "header.html" . }} +{{ $baseurl := .Site.BaseURL | sanitizeurl }} +
+
+

{{ .Title }}

+
+
+ +
+ {{ range .Params.tags }} + {{ . }} + {{ end }} +
+
+ {{ with .Params.thumbnail }} + thumbnail + {{ end }} +
+ {{ .Content }} +
+ +
+{{ partial "footer.html" . }} diff --git a/layouts/page/single.html b/layouts/page/single.html new file mode 100755 index 0000000..717e32f --- /dev/null +++ b/layouts/page/single.html @@ -0,0 +1,51 @@ +{{ partial "header.html" . }} +{{ $baseurl := .Site.BaseURL | sanitizeurl }} +
+
+
+ {{ range .Params.tags }} + {{ . }} + {{ end }} +
+
+ {{ with .Params.thumbnail }} + thumbnail + {{ end }} +
+ {{ .Content }} +
+ +
+{{ partial "footer.html" . }}