Initial creation
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.hugo_build.lock
|
||||
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
[submodule "themes/maddybook"]
|
||||
path = themes/maddybook
|
||||
url = https://github.com/makyo/maddybook
|
||||
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
---
|
||||
|
||||
20
config.toml
Normal file
20
config.toml
Normal file
@ -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
|
||||
12
content/_index.md
Normal file
12
content/_index.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
---
|
||||
|
||||

|
||||
|
||||
> 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**
|
||||
BIN
static/cover.png
Normal file
BIN
static/cover.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.5 MiB |
50
static/css/clade.css
Normal file
50
static/css/clade.css
Normal file
@ -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%;
|
||||
}
|
||||
1
themes/maddybook
Submodule
1
themes/maddybook
Submodule
Submodule themes/maddybook added at 322b922734
Reference in New Issue
Block a user