commit 8b8889db48bb634734bf1836641a07d8993d344e Author: Madison Scott-Clary Date: Mon Feb 14 15:15:15 2022 -0800 Start hugo 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..0258175 --- /dev/null +++ b/config.toml @@ -0,0 +1,21 @@ +baseURL = 'https://qoheleth.makyo.ink' +languageCode = 'en-us' +title = 'Qoheleth' +theme = 'maddybook' +paginatePath = '' +disablePathToLower = true + +[permalinks] + post = '/:filename/' + +[params] + author = 'Madison Scott-Clary' + home = 'https://makyo.ink' + copyright = 2021 + customCSS = ['css/qoheleth.css'] + subtitle = 'Post-Self book I' + 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..9fe0651 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,37 @@ +![Qoheleth cover](/cover.png) + +

+ +Order ebook Order paperback +

+ +> "All artists search. I search for stories, in this post-self age. What happens when you can no longer call yourself an individual, when you have split your sense of self among several instances? How do you react? Do you withdraw into yourself, become a hermit? Do you expand until you lose all sense of identity? Do you fragment? Do you go about it deliberately, or do you let nature and chance take their course?" + +With immersive technology at its peak, it's all too easy to get lost. When RJ loses emself in that virtual world, not only must ey find eir way out, but find all the answers ey can along the way. + +And, nearly a century on, society still struggles with the ramifications of those answers. + +*2020 Leo Literary Award winner.* + +----- + +

Strapped for cash? Read online for free!
Ready to move on to book II? You can find Toledot here.

+ + +## Read what people are saying about *Qoheleth* + +> Lack of sleep may have contributed, but I ended up thoroughly in tears at one point. Funny way to say I enjoyed something, perhaps, but there we are . . . I really enjoyed the blend of sci-fi, furry, and everyday queerness. + +--- [Fudge](https://vulpine.club/@fudge_the_sphinx/105114589201427361) + +> . . . an excellent use of the medium, and a real curiosity and insight about how people live their lives and how people will change as technology does. + +--- [Payson R. Harris](https://www.goodreads.com/review/show/3603316723?book_show_action=true) + +> Madison finds a way to address not only the joys and terrors of integrated simulation technology, but also tackles questions of gender and identity while telling a pretty gripping mystery story in the process. + +--- [Nenekiri Bookwyrm](https://www.goodreads.com/review/show/3635119822?book_show_action=true) + +> An extra queer alternative to Rainbows End by Vernor Vinge. A must read if you're into that transhumanism post-scarcity juice. + +--- [Neko](https://goblin.camp/@neko/104971539508378937) diff --git a/content/read/_index.md b/content/read/_index.md new file mode 100644 index 0000000..e81af5c --- /dev/null +++ b/content/read/_index.md @@ -0,0 +1,4 @@ +--- +type: chapter +--- + diff --git a/static/cover.png b/static/cover.png new file mode 100644 index 0000000..0db206a Binary files /dev/null and b/static/cover.png differ diff --git a/static/css/toledot.css b/static/css/toledot.css new file mode 100644 index 0000000..cfb1755 --- /dev/null +++ b/static/css/toledot.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