cleanup
Some checks are pending
Build and Push Docker Container / build-and-push (push) Waiting to run
Some checks are pending
Build and Push Docker Container / build-and-push (push) Waiting to run
This commit is contained in:
@@ -39,25 +39,27 @@
|
||||
|
||||
<body>
|
||||
|
||||
{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}}
|
||||
<main>
|
||||
<header><h1 id="tag_{{ .Title }}">{{ block "title" . }}{{ end }}</h1></header>
|
||||
<header>
|
||||
<h1 id="tag_{{ .Title }}">{{ block "title" . }}{{ end }}</h1>
|
||||
</header>
|
||||
|
||||
<article>
|
||||
{{ block "main" . }}
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
{{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}}
|
||||
{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}}
|
||||
{{ block "main" . }}
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
</article>
|
||||
{{ if .Params.tags }}
|
||||
<p style="margin-block-start: 3em;">Tags:
|
||||
|
||||
{{ if .Params.tags }}
|
||||
<p class="taglist" >Tags:
|
||||
{{ $tags := .Params.tags }}
|
||||
{{ range $index, $tag := $tags }}
|
||||
<a href="{{ "tags/" | relLangURL }}{{ $tag | urlize }}">{{ $tag }}</a>{{ if lt (add $index 1) (len $tags) }}, {{ end }}
|
||||
<a class="tag" href="{{ "tags/" | relLangURL }}{{ $tag | urlize }}">{{ $tag }}</a>{{ if lt (add $index 1) (len $tags) }}, {{ end }}
|
||||
{{ end }}
|
||||
</p>
|
||||
{{ end }}
|
||||
</main>
|
||||
|
||||
{{ block "footer" . }}
|
||||
<footer>
|
||||
<a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a>
|
||||
|
||||
Reference in New Issue
Block a user