Initial Commit
This commit is contained in:
9
themes/hugo-coder/layouts/partials/taxonomy/authors.html
Normal file
9
themes/hugo-coder/layouts/partials/taxonomy/authors.html
Normal file
@ -0,0 +1,9 @@
|
||||
<div class="authors">
|
||||
<i class="fa fa-user" aria-hidden="true"></i>
|
||||
{{- range $index, $el := . -}}
|
||||
{{- if gt $index 0 }}
|
||||
<span class="separator">•</span>
|
||||
{{- end }}
|
||||
<a href="{{ ( printf "authors/%s/" ( . | urlize ) ) | relLangURL }}">{{ . }}</a>
|
||||
{{- end -}}
|
||||
</div>
|
@ -0,0 +1,9 @@
|
||||
<div class="categories">
|
||||
<i class="fa fa-folder" aria-hidden="true"></i>
|
||||
{{- range $index, $el := . -}}
|
||||
{{- if gt $index 0 }}
|
||||
<span class="separator">•</span>
|
||||
{{- end }}
|
||||
<a href="{{ ( printf "categories/%s/" ( . | urlize ) ) | relLangURL }}">{{ . }}</a>
|
||||
{{- end -}}
|
||||
</div>
|
11
themes/hugo-coder/layouts/partials/taxonomy/tags.html
Normal file
11
themes/hugo-coder/layouts/partials/taxonomy/tags.html
Normal file
@ -0,0 +1,11 @@
|
||||
<div class="tags">
|
||||
<i class="fa fa-tag" aria-hidden="true"></i>
|
||||
{{- range $index, $el := . -}}
|
||||
{{- if gt $index 0 }}
|
||||
<span class="separator">•</span>
|
||||
{{- end }}
|
||||
<span class="tag">
|
||||
<a href="{{ ( printf "tags/%s/" ( . | urlize ) ) | relLangURL }}">{{ . }}</a>
|
||||
</span>
|
||||
{{- end -}}
|
||||
</div>
|
Reference in New Issue
Block a user