revises post navigation and post meta templates
This commit is contained in:
parent
baac6b57d9
commit
f34f7ad13c
2 changed files with 16 additions and 13 deletions
|
@ -1,21 +1,21 @@
|
|||
{{ if ne .Params.showpagemeta false }}
|
||||
<div class="post__meta">
|
||||
<!-- published date -->
|
||||
{{ if not .Date.IsZero -}}
|
||||
<i class="fas fa-calendar-alt"></i> {{ .Date.Format (.Site.Params.dateformat | default "Jan 02, 2006") -}}
|
||||
{{- end }}
|
||||
{{ if not .Date.IsZero }}
|
||||
<i class="fas fa-calendar-alt"></i> {{ .Date.Format (.Site.Params.dateformat | default "Jan 02, 2006") }}
|
||||
{{ end }}
|
||||
<!-- categories -->
|
||||
{{- with .Params.categories -}}
|
||||
{{- $total := len . -}}
|
||||
{{ if gt $total 0 -}}
|
||||
{{ with .Params.categories }}
|
||||
{{ $total := len . }}
|
||||
{{ if gt $total 0 }}
|
||||
in
|
||||
{{- $total := sub $total 1 -}}
|
||||
{{- range $i, $cat := sort . }}
|
||||
{{ $total := sub $total 1 }}
|
||||
{{ range $i, $cat := sort . }}
|
||||
<a class="post__category" href="{{ "/categories/" | relURL }}{{ $cat | urlize }}">{{ $cat | upper }}</a>
|
||||
{{ if lt $i $total }}•{{ end }}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<!-- tags -->
|
||||
{{ with .Params.tags }}
|
||||
{{ $total := len . }}
|
|
@ -1,14 +1,17 @@
|
|||
{{ $enabledPostNavigation := .Site.Params.postNavigation | default true }}
|
||||
{{ if $enabledPostNavigation }}
|
||||
<div class="post--navigation post--navigation-single">
|
||||
{{ with .PrevInSection -}}
|
||||
<a href="{{ .RelPermalink }}" class="post--navigation-prev">
|
||||
<i aria-hidden="true" class="fa fa-chevron-left"></i>
|
||||
<span>{{ .Title }}</span>
|
||||
<span class="navigation-tittle">{{ .Title }}</span>
|
||||
</a>
|
||||
{{- end }}
|
||||
{{ with .NextInSection -}}
|
||||
<a href="{{ .RelPermalink }}" class="post--navigation-next">
|
||||
<span>{{ .Title }}</span>
|
||||
<span class="navigation-tittle">{{ .Title }}</span>
|
||||
<i aria-hidden="true" class="fa fa-chevron-right"></i>
|
||||
</a>
|
||||
{{- end }}
|
||||
</div>
|
||||
{{ end }}
|
Loading…
Reference in a new issue