Преглед на файлове

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 преди 7 години
родител
ревизия
8b725e412e
променени са 1 файла, в които са добавени 7 реда и са изтрити 1 реда
  1. +7
    -1
      layouts/_default/list.html

+ 7
- 1
layouts/_default/list.html Целия файл

@@ -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 }}


Зареждане…
Отказ
Запис