Browse Source

Add Bootstrap 4.1.3 css file

Vova Tkach 6 years ago
parent
commit
130c412963

File diff suppressed because it is too large
+ 7 - 0
engine/wrapper/resources/styles/assets.sys.bootstrap.css.go


+ 4 - 0
engine/wrapper/static.go

@@ -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)

Some files were not shown because too many files changed in this diff