Learn

_unordered_url_list

Create an HTML unordered-list of taxonomy links.

The _unordered_url_list shortcut will turn a taxonomy list into an HTML unordered list of linked values. This URLs will be contextualized to the folder currently being viewed.

Sample Usage

Input

categories:
  - technology
  - zoology

Tag

{{ categories_unordered_url_list }}

Displayed Result

Assuming we’re viewing this tag on a page within the blog folder:

<ul>
    <li><a href="/blog/categories/technology">technology</a></li>
    <li><a href="/blog/categories/zoology">zoology</a></li>
</ul>

This article was last updated on March 30th, 2016. Find an error? Please let us know!