commit 7d12cb2c8bf78e99d514fb8dd0feaf14ac2286c8 Author: Madison Scott-Clary Date: Mon Feb 14 16:49:40 2022 -0800 Initial site 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..c987f86 --- /dev/null +++ b/config.toml @@ -0,0 +1,20 @@ +baseURL = 'https://neviim.makyo.ink/' +languageCode = 'en-us' +title = "Nevi'im" +theme = 'maddybook' +paginatePath = "" +disablePathToLower = true + +[permalinks] + post = '/:filename/' + +[params] + author = 'Madison Scott-Clary' + home = 'https://makyo.ink' + copyright = 2022 + customCSS = ['/css/neviim.css'] + subtitle = 'Post-Self book III' + subtitleLink = 'https://post-self.makyo.ink' + +[markup.goldmark.renderer] + unsafe = true diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..04a28a5 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,13 @@ +> *“Do you know how old I am, Dr. Brahe? I am two hundred twenty-two years old, a fork of an individual who is...who would be two hundred fifty-nine years old. I am no longer the True Name of 2124. Even remembering her feels like remembering an old friend. I remember her perfectly, and yet I do not remember how to be earnest. I do not remember how to simply celebrate. I do not know how to simply **be**."* + +The cracks are showing. + +Someone picked up on the broadcast from the Dreamer Module --- someone smart, someone moving fast --- and Dr. Tycho Brahe responded. As the powers that be rush to organize a meeting between races, Tycho is caught up in the whirlwind of activity, and as always, when the drama goes down, there is Codrin Bălan to witness it. + +When faced with eternity and the malleability of time in a new kind of digital world, however, old traumas come to roost, and those who were once powerful are brought to their knees + +Growth is colliding with memory, and the cracks are showing. + +----- + +**Coming July 21, 2022** diff --git a/static/css/neviim.css b/static/css/neviim.css new file mode 100644 index 0000000..cfb1755 --- /dev/null +++ b/static/css/neviim.css @@ -0,0 +1,13 @@ +@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; +} diff --git a/themes/maddybook b/themes/maddybook new file mode 160000 index 0000000..4916403 --- /dev/null +++ b/themes/maddybook @@ -0,0 +1 @@ +Subproject commit 49164031b669d2f3e4ce43bce8b7d79caf0eed03