David Vogel
6fbc00655f
- Add example colors page - Store all theme colors in CSS variables - Add layer container component - Use accent color for active pagination page - Automatically use layer-1 color in sidebar, sidebar menu and code containers - Adjust tag padding - Add base color scheme/theme
29 lines
782 B
Go
29 lines
782 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/vugu/vugu/simplehttp"
|
|
)
|
|
|
|
func main() {
|
|
|
|
// A hackish way to insert metadata and other stuff into the head tag.
|
|
simplehttp.DefaultStaticData["MetaTags"] = map[string]string{"viewport": "width=device-width, initial-scale=1"}
|
|
simplehttp.DefaultStaticData["Title"] = "D3vugu-components examples"
|
|
simplehttp.DefaultStaticData["CSSFiles"] = []string{"/static/css/d3c-theme-base.css"}
|
|
|
|
wd, _ := os.Getwd()
|
|
uiDir := filepath.Join(wd)
|
|
l := ":8875"
|
|
log.Printf("Starting HTTP Server at %q", l)
|
|
h := simplehttp.New(uiDir, true)
|
|
http.Handle("/", h)
|
|
http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir(filepath.Join(uiDir, "static")))))
|
|
|
|
log.Fatal(http.ListenAndServe(l, nil))
|
|
}
|