halo-theme-Single/tags.ftl

14 lines
380 B
Plaintext
Raw Normal View History

2022-04-10 11:10:56 +08:00
<#include "module/macro.ftl">
<@layout title="标签列表 - ${blog_title!}">
<h1>标签列表</h1>
<ul>
<@tagTag method="list">
<#if tags?? && tags?size gt 0>
<#list tags as tag>
<li><a href="${tag.fullPath!}">${tag.name}</a></li>
</#list>
</#if>
</@tagTag>
</ul>
</@layout>