mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-13 05:50:27 +00:00
16 lines
347 B
Go
16 lines
347 B
Go
package main
|
|
|
|
const (
|
|
FooterText = `
|
|
<hr>
|
|
This website runs <a href="https://github.com/bouncepaw/mycorrhiza">MycorrhizaWiki</a>.
|
|
`
|
|
TitleTemplate = `%s at MycorrhizaWiki`
|
|
DefaultStyles = `
|
|
<link rel="stylesheet" href="/sys/main.css?action=raw">
|
|
`
|
|
DefaultHeader = `
|
|
<h1 class="header__site-title">MycorrhizaWiki</h1>
|
|
` // TODO: Search input
|
|
)
|