diff options
author | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2021-08-16 10:28:54 +0700 |
---|---|---|
committer | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2021-08-16 11:20:29 +0700 |
commit | 75d5209e5c9dc8c9c22a5a865f7c7f8166b282e6 (patch) | |
tree | 9a6c40403a91536dc05fd38ff0b894164eb50c11 /layouts/_default/comic.html | |
parent | 4f02b06ad5e9a4e60f07afc08551bf4c611547af (diff) | |
download | blog-75d5209e5c9dc8c9c22a5a865f7c7f8166b282e6.tar.gz |
Switch data representation to definition list
Thank the author of the blog post [1] that helped me writing the CSS [1]: https://www.the-art-of-web.com/css/format-dl/
Diffstat (limited to 'layouts/_default/comic.html')
-rw-r--r-- | layouts/_default/comic.html | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/layouts/_default/comic.html b/layouts/_default/comic.html index 1b3e33e..2758deb 100644 --- a/layouts/_default/comic.html +++ b/layouts/_default/comic.html @@ -1,34 +1,34 @@ {{ define "main" }} {{ if .Menus }} <nav class="post-navigation"> - {{ range .Menus }} - <a href="{{ .URL | absLangURL }}" title="{{ .Title }}">{{ .Name }}</a> - {{ end }} + {{ range .Menus }} + <a href="{{ .URL | absLangURL }}" title="{{ .Title }}">{{ .Name }}</a> + {{ end }} </nav> {{ end }} <article class="post h-entry"> - <header class="post-header"> - <center> - <h1 class="p-name post-title{{ if .Params.draft }} draft{{end}}">{{ trim .Title " " }}</h1> - {{ if in .Params.categories "comics" }} - </center> - {{ end}} - </header> - <div class="content e-content"> - <center> - {{ partial "comicNav.html" . }} - <img title="{{ .Params.TitleText }}" alt="{{ .Params.Alt}}" - src={{ .Params.ComicLink}}> - {{ partial "comicNav.html" . }} - {{ .Content }} - <center> - </div> - {{ partial "postInfo.html" . }} + <header class="post-header"> + <center> + <h1 class="p-name post-title{{ if .Params.draft }} draft{{end}}">{{ trim .Title " " }}</h1> + {{ if in .Params.categories "comics" }} + </center> + {{ end}} + </header> + <div class="content e-content"> + <center> + {{ partial "comicNav.html" . }} + <img title="{{ .Params.TitleText }}" alt="{{ .Params.Alt}}" + src={{ .Params.ComicLink}}> + {{ partial "comicNav.html" . }} + {{ .Content }} + <center> + </div> + {{ partial "postInfo.html" . }} </article> {{ if and (.Site.Params.paginationSinglePost) (ne .Type "page") }} - {{ partial "paginationPost.html" . }} + {{ partial "paginationPost.html" . }} {{ end }} |