mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 05:20:26 +00:00
17 lines
534 B
Go
17 lines
534 B
Go
package main
|
|
|
|
const (
|
|
TitleEditTemplate = `Edit %s at MycorrhizaWiki`
|
|
TitleTemplate = `%s at MycorrhizaWiki`
|
|
DefaultTitle = "MycorrhizaWiki"
|
|
DefaultHeaderText = `MycorrhizaWiki 🍄`
|
|
DefaultFooterText = `This website runs <a href="https://github.com/bouncepaw/mycorrhiza">MycorrhizaWiki</a>.`
|
|
DefaultSidebar = ""
|
|
DefaultBodyBottom = ""
|
|
DefaultContent = "It is empty here"
|
|
DefaultStyles = `
|
|
<link rel="stylesheet" href="/sys/main.css?action=raw">
|
|
`
|
|
GenericErrorMsg = `<b>Sorry, something went wrong</b>`
|
|
)
|