Переглянути джерело

Merge pull request #822 from writefreely/custom-css-config

Look for custom CSS in static_parent_dir
pull/833/head
Matt Baer 5 місяці тому
committed by GitHub
джерело
коміт
e932467ac9
Не вдалося знайти GPG ключ що відповідає даному підпису Ідентифікатор GPG ключа: 4AEE18F83AFDEB23
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      app.go

+ 1
- 1
app.go Переглянути файл

@@ -365,7 +365,7 @@ func pageForReq(app *App, r *http.Request) page.StaticPage {
} }


// Use custom style, if file exists // 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 p.CustomCSS = true
} }




Завантаження…
Відмінити
Зберегти