shroomgit |
git clone https://git.davidvoz.net/shroomgit.git
|
| 1 | package main |
| 2 | |
| 3 | type 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 |
| 13 | var 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 | } |