olexsmir.xyz/lua/blog/config.lua(view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
local config = {}
config.name = "olexsmir"
config.title = "olexsmir's blog"
config.email = "olexsmir@gmail.com"
config.cname = "olexsmir.xyz"
config.url = "https://" .. config.cname
config.feed = {
url = config.url .. "/feed.xml",
subtitle = "olexsmir's blog feed, also hi rss reader!",
}
config.build = {
chroma_theme = "tokyonight-night",
output = "build",
static = "static",
posts = "posts",
}
return config
|