浏览代码

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 年前
父节点
当前提交
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 }}


正在加载...
取消
保存