commit 2af5b8d127267d17c216483cc094ef154f172fc6 Author: Madison Scott-Clary Date: Sun Nov 27 11:39:31 2022 -0800 Initial creation diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2a8645f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.hugo_build.lock diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..1c12789 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/maddybook"] + path = themes/maddybook + url = https://github.com/makyo/maddybook 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..31dca09 --- /dev/null +++ b/config.toml @@ -0,0 +1,20 @@ +baseURL = 'https://clade.post-self.ink/' +languageCode = 'en-us' +title = 'Clade' +theme = 'maddybook' +paginatePath = '' +disablePathToLower = true + +[permalinks] + post = '/:filename/' + +[params] + author = 'The Clade authors' + home = 'https://post-self.ink' + copyright = 2023 + customCSS = ['/css/clade.css'] + subtitle = 'A Post-Self Anthology' + subtitleLink = 'https://post-self.ink' + +[markup.goldmark.renderer] + unsafe = true diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..36312e3 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,12 @@ +--- +--- + +![Clade cover](/cover.png) + +> Clade *(n)* --- post-self theory: +> a group of individuals patterned off a single root consciousness, formed through branching expansion of the forking of its constituent members. +> *See: cladistics, cocladist, up-/down-/cross-tree instance, forking, post-self theory.* +> +> --- The SCLEWG Encyclopedia + +**Coming Early 2023** diff --git a/static/cover.png b/static/cover.png new file mode 100644 index 0000000..16c1e8b Binary files /dev/null and b/static/cover.png differ diff --git a/static/css/clade.css b/static/css/clade.css new file mode 100644 index 0000000..32cf9b9 --- /dev/null +++ b/static/css/clade.css @@ -0,0 +1,50 @@ +@import url('https://fonts.googleapis.com/css2?family=Gentium+Basic:ital,wght@0,400;0,700;1,400;1,700&family=Gotu&display=swap'); + +body main { + font-family: "Gentium Basic", serif; +} + +h1, h2 { + font-family: "Gotu", sans-serif; +} + +blockquote { + overflow-wrap: break-word; +} + +ul { + list-style-type: disc; + margin-left: 2rem; +} + +ul + p { + margin-top: 1rem; +} + +dt { + font-size: 90%; + font-style: italic; + line-height: 1.2; + text-decoration: underline; + color: #555; +} + +dt:after { + content: ':' +} + +dd { + margin-left: 1rem; + margin-bottom: 1rem; +} + +figure { + margin: 1rem auto; + max-width: 90%; +} + +figcaption { + text-align: center; + opacity: 0.9; + font-size: 50%; +} diff --git a/themes/maddybook b/themes/maddybook new file mode 160000 index 0000000..322b922 --- /dev/null +++ b/themes/maddybook @@ -0,0 +1 @@ +Subproject commit 322b9227340b88ec1dc9a030742febac71a07975