mirror of
https://github.com/writeas/writefreely
synced 2025-01-30 16:35:09 +01:00
Merge pull request #822 from writefreely/custom-css-config
Look for custom CSS in static_parent_dir
This commit is contained in:
commit
e932467ac9
2
app.go
2
app.go
@ -365,7 +365,7 @@ func pageForReq(app *App, r *http.Request) page.StaticPage {
|
||||
}
|
||||
|
||||
// Use custom style, if file exists
|
||||
if _, err := os.Stat(filepath.Join(staticDir, "local", "custom.css")); err == nil {
|
||||
if _, err := os.Stat(filepath.Join(app.cfg.Server.StaticParentDir, staticDir, "local", "custom.css")); err == nil {
|
||||
p.CustomCSS = true
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user