diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-01-23 18:49:53 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-01-23 18:49:53 -0800 |
| commit | c415e4a1e5525bd603d8f143ec7f149d8f1513c7 (patch) | |
| tree | eab3913abdaa9acbf02e7eb0d8a0fe28b2fbd867 /layouts/_default | |
| parent | css: TOC location based on display's size (diff) | |
| download | fcuny.net-c415e4a1e5525bd603d8f143ec7f149d8f1513c7.tar.gz | |
layout: no need for a class to element 'article'
Diffstat (limited to 'layouts/_default')
| -rw-r--r-- | layouts/_default/list.html | 2 | ||||
| -rw-r--r-- | layouts/_default/single.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 6d1c04f..d2c59a7 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,6 +1,6 @@ {{ define "main" }} -<article class="article"> +<article> {{ $pgs := where .Data.Pages "Params.hidden" "ne" "true" }} {{ partial "postlist" $pgs }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 524145a..fe2477e 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -38,7 +38,7 @@ </div> {{ end }} -<article class="article"> +<article> {{ .Content }} </article> |
