Reordered blog post header

This commit is contained in:
Aroy-Art 2024-09-12 20:10:54 +02:00
parent 8a56acab67
commit 2376d33499
Signed by: Aroy
GPG key ID: DB9689E9391DD156
4 changed files with 25 additions and 18 deletions

View file

@ -9,30 +9,37 @@
<section class="section">
<div class="container">
<div class="row bg-one">
<div class="col-lg-8 offset-lg-2 text-center">
<h1>{{ .Title }}</h1>
<ul class="list-inline mb-50">
<img class="mt-4 mb-2 lozad rounded-3 img-fluid" src="{{ .Params.Image | absURL }}" alt="blog-image">
<ul class="list-inline my-4 text-center">
<li class="list-inline-item"><a href="{{ `author/` | relLangURL }}{{ .Params.Author | urlize }}/">{{ .Params.Author }}</a></li>
<li class="list-inline-item">Published Date: {{ with site.Params.dateFormat | default "2006-01-02" | .Date.Format }} {{ . }} {{ end }}</li>
<li class="list-inline-item">Last Modified: {{ with site.Params.dateFormat | default "2006-01-02" | .Lastmod.Format }} {{ . }} {{ end }}</li>
</ul>
<img class="img-fluid mb-50 lozad" src="{{ .Params.Image | absURL }}" alt="blog-image">
{{ partial "get_tags.html" . }}
{{ partial "get_tags.html" . }}
</div>
<div class="col-lg-8 offset-lg-2">
<div class="post-single-content">
{{ .Content }}
</div>
{{ if site.Params.post_share }}
{{ partial "post_share.html" . }}
{{ end }}
<!-- comments -->
{{ if site.Params.comments }}
{{ partial "comments.html" . }}
{{ end }}
<h1 class="text-center mx-50 px-lg-5 px-md-5">{{ .Title }}</h1>
<div class="col-lg-8 offset-lg-2">
<div class="post-single-content">
{{ .Content }}
</div>
{{ if site.Params.post_share }}
{{ partial "post_share.html" . }}
{{ end }}
<!-- comments -->
{{ if site.Params.comments }}
{{ partial "comments.html" . }}
{{ end }}
</div>
</div>
</div>
</div>

View file

@ -2,7 +2,7 @@
<div class="tagContainer">
{{ range $index, $tag := (. | sort) }}
{{ with $.Site.GetPage (printf "/%s/%s" "tags" $tag) }}
<a class="tags" href="{{ .Permalink }}">#{{ $tag | urlize }}</a>
<a class="tags" href="{{ .Permalink }}/">#{{ $tag | urlize }}</a>
{{ end }}
{{ end }}
</div>

View file

@ -13,7 +13,7 @@
{{ $currentFontSize := (add $smallestFontSize (mul (sub $tagCount $min) $fontStep) ) }}
{{ $weight := div (sub (math.Log $tagCount) (math.Log $min)) (sub (math.Log $max) (math.Log $min)) }}
{{ $currentFontSize := (add $smallestFontSize (mul (sub $largestFontSize $smallestFontSize) $weight)) }}
<a href="{{ "/tags/" | relURL }}{{ $name | urlize }}"
<a href="{{ "/tags/" | relURL }}{{ $name | urlize }}/"
class="tagcloud-item" style="font-size: {{ $currentFontSize }}rem;">
{{ $name }}<sup>{{ $tagCount }}</sup>
</a>

View file

@ -2,7 +2,7 @@
<ul>
{{ range $index, $tag := . }} {{ with $.Site.GetPage (printf "/%s/%s" $taxonomy $tag) -}}
<li>
<a href="{{ .Permalink }}">{{ $tag | urlize }}</a>
<a href="{{ .Permalink }}/">{{ $tag | urlize }}</a>
</li>
{{- end -}} {{- end -}}
</ul>