shroomgit

static git repos page gen
Log | Files | Refs | README

config.go (393B)


      1 package config
      2 
      3 type Config struct {
      4 	Title      string
      5 	Favicon    string
      6 	Logo       string
      7 	LogoHref   string
      8 	LogoWidth  int
      9 	LogoHeight int
     10 	Desc       string
     11 }
     12 
     13 // shindex config
     14 var Shindex = Config{
     15 	Title:      "Repositories",
     16 	Logo:       "logo.png",
     17 	LogoHref:   "",
     18 	LogoWidth:  0,
     19 	LogoHeight: 0,
     20 	Desc:       "",
     21 }
     22 
     23 // shgit config
     24 var Shgit = Config{
     25 	Favicon: "favicon.png",
     26 }