Initial commit

This commit is contained in:
2021-12-28 08:36:20 +08:00
commit c7703a1cba
17 changed files with 321 additions and 0 deletions

13
tags.ftl Normal file
View File

@@ -0,0 +1,13 @@
<#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>