commit 29f0316b44d25ae6331249d71f79de8e867d0e21 Author: Stef Dunlap Date: Mon May 16 19:55:08 2022 -0400 Initial commit diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..0b87aaa --- /dev/null +++ b/config.toml @@ -0,0 +1,3 @@ +baseURL = 'http://example.org/' +languageCode = 'en-ca' +title = 'kindrobot.ca' diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..0bf8af5 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,18 @@ +--- +title: kindrobot +subtitle: Failing CAPTCHAs since 1988. +--- + +A [human](http://motevets.com). + +A [duck](http://🦆.to/). + +A [legitimate business](https://shadyjakes.biz). + +------- + +A [place to belong](https://tilde.town). + +A [thing to flex](https://motevets.com/projects/2017/05/25/hexaflexago-hexaflexagon-generator.html). + +A [source of light](https://chez.kindrobot.ca/puter.html). diff --git a/data/.gitkeep b/data/.gitkeep new file mode 100644 index 0000000..49cc8ef Binary files /dev/null and b/data/.gitkeep differ diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..83046d0 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,19 @@ + + + + + {{ block "title" . }} + {{ .Site.Title }} + {{ end }} + + + + + {{ block "main" . }} + + {{ end }} + {{ block "footer" . }} + + {{ end }} + + diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..24931eb --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,35 @@ +{{ define "title"}} + {{.Title}} +{{ end }} + +{{ define "main" }} +
+
+

{{.Title}}

+ {{ with .Params.subtitle }} + {{.}} + {{ end }} +
+
+ {{.Content}} +
+
+ {{ range first 10 .Site.RegularPages }} + {{ .Render "summary"}} + {{ end }} +
+
+
+

a member of the tilde.town ~ring

+

random ~user + | random ~box + | next ~user

+

join

+ +
+
+{{ end }} diff --git a/resources/_gen/assets/.gitkeep b/resources/_gen/assets/.gitkeep new file mode 100644 index 0000000..49cc8ef Binary files /dev/null and b/resources/_gen/assets/.gitkeep differ diff --git a/resources/_gen/images/.gitkeep b/resources/_gen/images/.gitkeep new file mode 100644 index 0000000..49cc8ef Binary files /dev/null and b/resources/_gen/images/.gitkeep differ diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..518f79f --- /dev/null +++ b/static/style.css @@ -0,0 +1,17 @@ +body { + background-color: DarkSlateGray; + color: Gainsboro; + font-family: courier; + max-width: 650px; + margin-left: 100px; +} +a { + color: LightGray; +} + +#title { + display: inline; +} +span.subtitle { + font-style: italic; +} diff --git a/themes/.gitkeep b/themes/.gitkeep new file mode 100644 index 0000000..49cc8ef Binary files /dev/null and b/themes/.gitkeep differ