|
@@ -15,6 +15,10 @@ func (e *Wrapper) staticResource() bool {
|
|
|
(*e.W).Header().Set("Content-Type", "text/css")
|
|
|
(*e.W).Write(Styles.File_assets_sys_styles_css)
|
|
|
return true
|
|
|
+ } else if e.R.URL.Path == "/assets/sys/bootstrap.css" {
|
|
|
+ (*e.W).Header().Set("Content-Type", "text/css")
|
|
|
+ (*e.W).Write(Styles.File_assets_sys_bootstrap_css)
|
|
|
+ return true
|
|
|
} else if e.R.URL.Path == "/assets/sys/logo.svg" {
|
|
|
(*e.W).Header().Set("Content-Type", "image/svg+xml")
|
|
|
(*e.W).Write(Others.File_assets_sys_logo_svg)
|