shroomgit

generate static pages of git repos
git clone https://git.davidvoz.net/shroomgit.git
index
logs
tree

config.go
1package main
2
3type config struct {
4 title string
5 logo string
6 logoHref string
7 logoWidth int
8 logoHeight int
9 desc string
10}
11
12// Shindex config
13var shindex = config{
14 title: "Repositories",
15 logo: "logo.png",
16 logoHref: "https://davidvoz.net",
17 logoWidth: 88,
18 logoHeight: 36,
19 desc: "this is a static index of my repos, for more visit <a href='https://git.disroot.org/davidv'>here</a>",
20}