mirror of
https://github.com/rottenwheel/revuo-weekly.git
synced 2024-11-09 02:02:26 -07:00
b54a5f4625
Moved the 'description' field from the main config section to the 'params' section for better organization and adherence to Hugo's recommended configuration structure. This change helps maintain cleaner and more modular configuration files.
69 lines
2.7 KiB
TOML
69 lines
2.7 KiB
TOML
baseURL = 'https://revuo-xmr.com/'
|
|
languageCode = 'en-us'
|
|
title = 'Revuo Monero'
|
|
disablePathToLower = true
|
|
canonifyURLs = true
|
|
enableRobotsTXT = true
|
|
theme = 'revuo-xmr'
|
|
|
|
[sitemap]
|
|
changefreq = "weekly"
|
|
priority = 0.5
|
|
|
|
[imaging]
|
|
quality = 50
|
|
|
|
[params]
|
|
description = 'Weekly and Quarterly Monero Newsletter'
|
|
|
|
dateFormat = "02 Jan 2006"
|
|
|
|
nav_links = [
|
|
{ title = "Revuo Weekly", link = "/" },
|
|
{ title = "Revuo Periodical", link = "/periodicals" },
|
|
{ title = "Source Code & Licenses", link = "/source" },
|
|
{ title = "Support Revuo", link = "/support" },
|
|
]
|
|
|
|
right_icons = [
|
|
{ title = "Support", link = "/support", external = false, icon = "donate.png", icon_alt = "Donate" },
|
|
{ title = "ATOM Feed", link = "/index.xml", external = true, icon = "rss_1.png", icon_alt = "ATOM Feed" },
|
|
]
|
|
|
|
mirrors = [
|
|
{ title = "Onion", link = "http://revuo75joezkbeitqmas4ab6spbrkr4vzbhjmeuv75ovrfqfp47mtjid.onion/", icon = "tor.png", icon_alt = "Tor" },
|
|
{ title = "I2P", link = "http://qve7i3ke5h2mbbyphd7agmh5awzcwulvrvghjvhndkagdbi4mkcq.b32.i2p/", icon = "itoopie.png", icon_alt = "I2P" },
|
|
]
|
|
|
|
bottom_nav_icons = [
|
|
{ title = "Nostr", link = "https://primal.net/p/npub1tn8spk9zhxrctg2qym3gj8r7eq2wk6z3phrl8304wc54vt9qam4qvzw6jx", icon = "nostr-icon.png", icon_alt = "Nostr" },
|
|
{ title = "x.com", link = "https://xcancel.com/revuoxmr", icon = "xcom-icon.png", icon_alt = "x.com" },
|
|
{ title = "XMPP MUC", link = "xmpp:revuo-monero@conference.jabbers.one?join", icon = "xmpp.png", icon_alt = "XMPP MUC" },
|
|
{ title = "Matrix Room", link = "https://matrix.to/#/#revuo:monero.social", icon = "matrix.png", icon_alt = "Matrix Room" },
|
|
{ title = "SimpleX Group", link = "https://simplex.chat/contact#/?v=2-5&smp=smp%3A%2F%2FPQUV2eL0t7OStZOoAsPEV2QYWt4-xilbakvGUGOItUo%3D%40smp6.simplex.im%2FFdX47r8M_nGmRC9jDODlW2idjcU7S827%23%2F%3Fv%3D1-2%26dh%3DMCowBQYDK2VuAyEASXUc7nr69PVJo4E7ub-F4-xHWeYy2bms-2-tl05e7Ak%253D%26srv%3Dbylepyau3ty4czmn77q4fglvperknl4bi2eb2fdy2bh4jxtf32kf73yd.onion&data=%7B%22type%22%3A%22group%22%2C%22groupLinkId%22%3A%22nTyju82ZTeLaAbphcYVc8A%3D%3D%22%7D", icon = "simplex.png", icon_alt = "SimpleX Group" },
|
|
{ title = "IRC Room", link = "irc://irc.libera.chat/#revuo-xmr", icon = "irc.png", icon_alt = "IRC Room" },
|
|
]
|
|
|
|
[params.author]
|
|
name = "rottenwheel"
|
|
monero_address = "89Esx7ZAoVcD9wiDw57gxgS7m52sFEEbQiFC4qq18YZy3CdcsXvJ67FYdcDFbmYEGK7xerxgmDptd1C2xLstCbgF3RUhSMT"
|
|
monero_qr = "img/qr.jpg"
|
|
|
|
[params.logo]
|
|
icon = "revuo-monero-logo.png"
|
|
icon_alt = "Revuo Monero Logo"
|
|
|
|
[params.nav_footer]
|
|
title = "Monero Website"
|
|
link = "https://www.getmonero.org/"
|
|
|
|
[params.sponsor]
|
|
introduction = "Infrastructure sponsored by"
|
|
link = "https://www.digilol.net"
|
|
icon = "digilol.png"
|
|
icon_alt = "Digilol"
|
|
|
|
[markup]
|
|
[markup.goldmark]
|
|
[markup.goldmark.renderer]
|
|
unsafe = true |