Move some files to a better place, remove some unused file
This commit is contained in:
parent
0bbda99e9c
commit
89e88cf1e1
27 changed files with 13 additions and 13 deletions
9
layouts/partials/taxonomy/categories.html
Normal file
9
layouts/partials/taxonomy/categories.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<div class="categories">
|
||||
<i class="fas fa-folder"></i>
|
||||
{{- range $index, $el := . -}}
|
||||
{{- if gt $index 0 }}
|
||||
<span class="separator">•</span>
|
||||
{{- end }}
|
||||
<a href="{{ ( printf "categories/%s/" ( . | urlize ) ) | relLangURL }}">{{ . }}</a>
|
||||
{{- end -}}
|
||||
</div>
|
9
layouts/partials/taxonomy/tags.html
Normal file
9
layouts/partials/taxonomy/tags.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<div class="tags">
|
||||
<i class="fas fa-tag"></i>
|
||||
{{- range $index, $el := . -}}
|
||||
{{- if gt $index 0 }}
|
||||
<span class="separator">•</span>
|
||||
{{- end }}
|
||||
<a href="{{ ( printf "tags/%s/" ( . | urlize ) ) | relLangURL }}">{{ . }}</a>
|
||||
{{- end -}}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue