Initial site

This commit is contained in:
Madison Scott-Clary
2022-02-14 16:49:40 -08:00
commit 7d12cb2c8b
7 changed files with 57 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
---

20
config.toml Normal file
View File

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

13
content/_index.md Normal file
View File

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

13
static/css/neviim.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