edbf78f236
- Halo Plugin 后端(Java/Gradle),含 DarkModePlugin 主类和测试 - Vue 3 + TypeScript 前端 UI,包含主题切换组件和设置页面 - 暗色模式 CSS 变量和覆盖样式(布局/编辑器/表单/滚动条等) - 设计文档和调查文档 - Halo 插件/主题开发 Agent Skills Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
953 B
HTML
26 lines
953 B
HTML
<!doctype html>
|
|
<html
|
|
xmlns:th="https://www.thymeleaf.org"
|
|
th:replace="~{layout :: html(head = null, content = ~{::content})}"
|
|
>
|
|
<th:block th:fragment="content">
|
|
<h1>Archives</h1>
|
|
<th:block th:each="archive : ${archives.items}">
|
|
<h2 th:text="${archive.year}"></h2>
|
|
<th:block th:each="month : ${archive.months}">
|
|
<h3 th:text="|${archive.year}-${month.month}|"></h3>
|
|
<ul>
|
|
<li th:each="post : ${month.posts}">
|
|
<a th:href="@{${post.status.permalink}}" th:text="${post.spec.title}"></a>
|
|
</li>
|
|
</ul>
|
|
</th:block>
|
|
</th:block>
|
|
<nav th:if="${archives.hasPrevious() || archives.hasNext()}">
|
|
<a th:if="${archives.hasPrevious()}" th:href="@{${archives.prevUrl}}">Previous</a>
|
|
<span th:text="|${archives.page} / ${archives.totalPages}|"></span>
|
|
<a th:if="${archives.hasNext()}" th:href="@{${archives.nextUrl}}">Next</a>
|
|
</nav>
|
|
</th:block>
|
|
</html>
|