瀏覽代碼

shortcodes: Add `list_tags` and `list_categories`

To use:

`{{< list_tags >}}` to provide a list of linked tags.
`{{< list_categories >}}` to provide a list of linked categories.
George Cushen 7 年之前
父節點
當前提交
74b0b6f508
共有 2 個文件被更改,包括 10 次插入0 次删除
  1. 5 0
      layouts/shortcodes/list_categories.html
  2. 5 0
      layouts/shortcodes/list_tags.html

+ 5 - 0
layouts/shortcodes/list_categories.html

@@ -0,0 +1,5 @@
+<ul class="list-unstyled">
+  {{ range ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
+  <li><a href="{{.Permalink}}">{{.Title}}</a></li>
+  {{ end }}
+</ul>

+ 5 - 0
layouts/shortcodes/list_tags.html

@@ -0,0 +1,5 @@
+<ul class="list-unstyled">
+  {{ range ($.Site.GetPage "taxonomyTerm" "tags").Pages }}
+  <li><a href="{{.Permalink}}">{{.Title}}</a></li>
+  {{ end }}
+</ul>