Start hugo site

This commit is contained in:
Madison Scott-Clary
2022-02-14 15:15:15 -08:00
commit 8b8889db48
9 changed files with 86 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.hugo_build.lock

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "themes/maddybook"]
path = themes/maddybook
url = https://github.com/makyo/maddybook

6
archetypes/default.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

21
config.toml Normal file
View File

@ -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

37
content/_index.md Normal file
View File

@ -0,0 +1,37 @@
![Qoheleth cover](/cover.png)
<p style="text-indent: 0; text-align: center">
<script src="https://gumroad.com/js/gumroad.js"></script>
<a class="gumroad-button" href="https://gum.co/qoheleth-ebook">Order ebook</a> <a class="gumroad-button" href="https://makyo-ink.square.site/product/qoheleth/7">Order paperback</a>
</p>
> "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.*
-----
<p style="text-indent: 0; text-align: center">Strapped for cash? <a href="/read">Read online for free!</a><br>Ready to move on to book II? You can find <em>Toledot</em> <a href="https://toledot.makyo.ink">here</a>.</p>
## 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)

4
content/read/_index.md Normal file
View File

@ -0,0 +1,4 @@
---
type: chapter
---

BIN
static/cover.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 716 KiB

13
static/css/toledot.css Normal file
View File

@ -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;
}

1
themes/maddybook Submodule

Submodule themes/maddybook added at 49164031b6