mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
33985223fa
- Link RSS feed in the navbar - Give gemlog a similar layout with the publication date at the top and a link to the source code at the bottom.
77 lines
1.4 KiB
TOML
77 lines
1.4 KiB
TOML
baseURL = "https://seirdy.one/"
|
|
languageCode = "en-us"
|
|
title = "Seirdy's Home"
|
|
theme = "etch-custom"
|
|
|
|
enableInlineShortcodes = true
|
|
# disablePathToLower = true
|
|
uglyurls = true
|
|
pygmentsCodeFences = true
|
|
pygmentsUseClasses = true
|
|
|
|
[params]
|
|
description = "Seirdy's personal website"
|
|
src = "https://sr.ht/~seirdy/seirdy.one"
|
|
copyright = "Copyright © 2020 Rohan Kumar"
|
|
dark = "auto"
|
|
highlight = true
|
|
|
|
[author]
|
|
name = "Rohan Kumar"
|
|
|
|
[menu]
|
|
[[menu.main]]
|
|
identifier = "posts"
|
|
name = "posts"
|
|
title = "posts"
|
|
url = "/posts.html"
|
|
weight = 10
|
|
|
|
[[menu.main]]
|
|
identifier = "about"
|
|
name = "about"
|
|
title = "about"
|
|
url = "/about.html"
|
|
weight = 20
|
|
|
|
[[menu.main]]
|
|
identifier = "rss"
|
|
name = "rss"
|
|
title = "rss"
|
|
url = "/posts/index.xml"
|
|
weight = 30
|
|
|
|
[permalinks]
|
|
posts = "/:year/:month/:day/:filename"
|
|
|
|
[markup.goldmark.renderer]
|
|
# Allows HTML in Markdown
|
|
unsafe = true
|
|
|
|
[markup.tableOfContents]
|
|
ordered = true
|
|
|
|
# lifted from https://git.sr.ht/~sircmpwn/drewdevault.com
|
|
[mediaTypes]
|
|
[mediaTypes."text/gemini"]
|
|
suffixes = ["gmi"]
|
|
|
|
[outputFormats]
|
|
[outputFormats.Gemini]
|
|
name = "GEMTEXT"
|
|
isPlainText = true
|
|
isHTML = false
|
|
mediaType = "text/gemini"
|
|
protocol = "gemini://"
|
|
permalinkable = true
|
|
path = "gemini/"
|
|
|
|
[outputFormats.GEMRSS]
|
|
name = "GEMRSS"
|
|
isHTML = false
|
|
mediaType = "application/rss+xml"
|
|
protocol = "gemini://"
|
|
path = "gemini/"
|
|
|
|
[outputs]
|
|
section = ["HTML", "RSS", "GEMRSS"]
|