mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 03:36:41 +02:00
v0.3.0
- Change color from orange to blue; improve colors elsewhere - Change `div.section` to `section` - Rename `posts` directory to `blog` - Add ability to specify extra CSS files in `config.toml` - Removed `WebFontsFile` feature from `config.toml` - Remove the initials displayed on top right of single post pages - Update example site
This commit is contained in:
@@ -15,18 +15,20 @@
|
||||
<link rel="stylesheet" href="/css/reset.css">
|
||||
<link rel="stylesheet" href="/css/pygments.css">
|
||||
<link rel="stylesheet" href="/css/main.css">
|
||||
{{ if .Site.Params.WebfontsFile }}
|
||||
<link rel="stylesheet" href="/{{ .Site.Params.WebfontsFile }}">
|
||||
{{ end }}
|
||||
|
||||
{{range .Site.Params.ExtraCssFiles}}
|
||||
<link rel="stylesheet" href="{{.}}">
|
||||
{{end}}
|
||||
|
||||
{{ else }}
|
||||
|
||||
<link rel="stylesheet" href="/css/reset.css?{{ .Now.Unix }}">
|
||||
<link rel="stylesheet" href="/css/pygments.css?{{ .Now.Unix }}">
|
||||
<link rel="stylesheet" href="/css/main.css?{{ .Now.Unix }}">
|
||||
{{ if .Site.Params.WebfontsFile }}
|
||||
<link rel="stylesheet" href="/{{ .Site.Params.WebfontsFile }}?{{ .Now.Unix }}">
|
||||
{{ end }}
|
||||
|
||||
{{range .Site.Params.ExtraCssFiles}}
|
||||
<link rel="stylesheet" href="{{.}}?{{ .Now.Unix }}">
|
||||
{{end}}
|
||||
|
||||
{{ end }}
|
||||
|
||||
|
Reference in New Issue
Block a user