Przeglądaj źródła

Allow custom icons to be set per tag

Create a file for each tag that needs a custom icon eg:

/content/tags/favourites/_index.md

containing:

---
fa_icon: fa-heart
title: Favourites
---
master
Adrian Short 6 lat temu
rodzic
commit
8b725e412e
1 zmienionych plików z 7 dodań i 1 usunięć
  1. +7
    -1
      layouts/_default/list.html

+ 7
- 1
layouts/_default/list.html Wyświetl plik

@@ -1,5 +1,11 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ $.Scratch.Set "fa_icon" "fa-tag" }}

{{ if isset .Params "fa_icon" }}
{{ $.Scratch.Set "fa_icon" .Params.fa_icon }}
{{ end }}

<h1><i class="fa {{ $.Scratch.Get "fa_icon" }}"></i>{{ .Title }}</h1>
{{ range .Paginator.Pages }}
{{ .Render "li" }}
{{ end }}


Ładowanie…
Anuluj
Zapisz