feat(article): add support for custom taxonomy link

This commit is contained in:
Jimmy Cai 2020-09-18 00:00:39 +02:00
parent c74cc3e4b3
commit b540350d76
No known key found for this signature in database
GPG Key ID: 3EA408E527F37B18
3 changed files with 25 additions and 18 deletions

View File

@ -1,16 +1,19 @@
{{ $image := partialCached "helper/image" (dict "Context" .) .RelPermalink }} {{- $image := partialCached "helper/image" (dict "Context" .) .RelPermalink -}}
{{ $context := . }} {{- $context := . -}}
{{- $categories := .Params.categories -}}
<div class="article-details"> <div class="article-details">
{{ with $categories := .Params.categories }} {{ if $categories }}
<header class="article-category"> <header class="article-category">
{{ range $categories }} {{ range $category := $categories }}
{{ if and $image.exists $image.resource }} {{ with $.Site.GetPage (printf "/categories/%s" $category) }}
{{- $imageRaw := $image.resource | resources.Fingerprint "md5" -}} {{ if and $image.exists $image.resource }}
{{- $20x := $imageRaw.Fill "20x20 smart" -}} {{- $imageRaw := $image.resource | resources.Fingerprint "md5" -}}
<a href="{{ printf `categories/%s` (. | urlize) | relLangURL }}" class="color-tag" {{- $20x := $imageRaw.Fill "20x20 smart" -}}
data-image="{{ $20x.RelPermalink }}" data-key="{{ $context.Slug }}" data-hash="{{ $imageRaw.Data.Integrity }}">{{ . | humanize }}</a> <a href="{{ .Permalink }}" class="color-tag"
{{ else }} data-image="{{ $20x.RelPermalink }}" data-key="{{ $context.Slug }}" data-hash="{{ $imageRaw.Data.Integrity }}">{{ .Title | humanize }}</a>
<a href="{{ printf `categories/%s` (. | urlize) | relLangURL }}">{{ . | humanize }}</a> {{ else }}
<a href="{{ printf `categories/%s` (. | urlize) | relLangURL }}">{{ .Title | humanize }}</a>
{{ end }}
{{ end }} {{ end }}
{{ end }} {{ end }}
</header> </header>

View File

@ -1,11 +1,5 @@
<footer class="article-footer"> <footer class="article-footer">
{{ with $tags := .Params.Tags }} {{ partial "article/components/tags" . }}
<section class="article-tags">
{{ range $tags }}
<a href="{{ printf `tags/%s` (. | urlize) | relLangURL }}">{{ . | humanize }}</a>
{{ end }}
</section>
{{ end }}
{{ if and (.Site.Params.article.license.enabled) (not (eq .Params.license false)) }} {{ if and (.Site.Params.article.license.enabled) (not (eq .Params.license false)) }}
<section class="article-copyright"> <section class="article-copyright">

View File

@ -0,0 +1,10 @@
{{- $tags := .Params.Tags -}}
{{ if $tags }}
<section class="article-tags">
{{ range $tag := $tags }}
{{ with $.Site.GetPage (printf "/tags/%s" $tag) }}
<a href="{{ .Permalink }}">{{ .Title | humanize }}</a>
{{ end }}
{{ end }}
</section>
{{ end }}