edbf78f236
- Halo Plugin 后端(Java/Gradle),含 DarkModePlugin 主类和测试 - Vue 3 + TypeScript 前端 UI,包含主题切换组件和设置页面 - 暗色模式 CSS 变量和覆盖样式(布局/编辑器/表单/滚动条等) - 设计文档和调查文档 - Halo 插件/主题开发 Agent Skills Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
644 B
HTML
24 lines
644 B
HTML
<!doctype html>
|
|
<html
|
|
xmlns:th="https://www.thymeleaf.org"
|
|
th:replace="~{layout :: html(head = ~{::head}, content = ~{::content})}"
|
|
>
|
|
<th:block th:fragment="head">
|
|
<title th:text="|${singlePage.spec.title} - ${site.title}|"></title>
|
|
</th:block>
|
|
<th:block th:fragment="content">
|
|
<article>
|
|
<h1 th:text="${singlePage.spec.title}"></h1>
|
|
<div th:utext="${singlePage.content.content}"></div>
|
|
</article>
|
|
|
|
<div th:if="${haloCommentEnabled}">
|
|
<halo:comment
|
|
group="content.halo.run"
|
|
kind="SinglePage"
|
|
th:attr="name=${singlePage.metadata.name}"
|
|
/>
|
|
</div>
|
|
</th:block>
|
|
</html>
|