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 | 5abd6605d975c90a5a9620267bd6ba2371317b9c (patch) | |
tree | 04b4b4487c13a569e28d449be19fa21887bb91ac | |
parent | css: TOC location based on display's size (diff) | |
download | world-5abd6605d975c90a5a9620267bd6ba2371317b9c.tar.gz |
layout: no need for a class to element 'article'
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/notes/layouts/_default/list.html | 2 | ||||
-rw-r--r-- | users/fcuny/notes/layouts/_default/single.html | 2 | ||||
-rw-r--r-- | users/fcuny/notes/layouts/index.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/users/fcuny/notes/layouts/_default/list.html b/users/fcuny/notes/layouts/_default/list.html index 6d1c04f..d2c59a7 100644 --- a/users/fcuny/notes/layouts/_default/list.html +++ b/users/fcuny/notes/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/users/fcuny/notes/layouts/_default/single.html b/users/fcuny/notes/layouts/_default/single.html index 524145a..fe2477e 100644 --- a/users/fcuny/notes/layouts/_default/single.html +++ b/users/fcuny/notes/layouts/_default/single.html @@ -38,7 +38,7 @@ </div> {{ end }} -<article class="article"> +<article> {{ .Content }} </article> diff --git a/users/fcuny/notes/layouts/index.html b/users/fcuny/notes/layouts/index.html index 523ad08..2ab8c40 100644 --- a/users/fcuny/notes/layouts/index.html +++ b/users/fcuny/notes/layouts/index.html @@ -1,6 +1,6 @@ {{ define "main" }} -<article class="article"> +<article> <h1>{{ .Site.Home.Title }}</h1> |