refactor(alpine): restructure components and remove unused utilities for better modularity and maintainability
Theme CD / Package Theme (release) Failing after 13m8s
Theme CD / Release (release) Failing after 14m59s

这个提交包含在:
2026-06-14 08:31:42 +08:00 未验证
父节点 c5fede55b1
当前提交 261c0116ba
修改 45 个文件,包含 4040 行新增737 行删除
+26
查看文件
@@ -0,0 +1,26 @@
<th:block xmlns:th="https://www.thymeleaf.org">
<div class="devcm-terminal-window" th:fragment="terminal-window (content)">
<div class="devcm-window-titlebar">
<span class="devcm-window-dot"></span>
<span class="devcm-window-dot"></span>
<span class="devcm-window-dot"></span>
</div>
<th:block th:replace="${content}" />
</div>
<div class="devcm-editor-window" th:fragment="editor-window (tabTitle, content)">
<div class="devcm-editor-tabs">
<div class="devcm-editor-tab devcm-editor-tab--active">
<span th:text="${tabTitle}">_posts.md</span>
<a
class="devcm-editor-tab__close"
href="/"
th:aria-label="#{devcm.action.closeTab}"
th:title="#{devcm.action.closeTab}"
>×</a
>
</div>
</div>
<th:block th:replace="${content}" />
</div>
</th:block>