fix(ui): enhance header and post styles with new animations and layout adjustments

这个提交包含在:
rohow
2026-01-29 16:28:33 +08:00
未验证
父节点 c34fb7da19
当前提交 d3af9f09d9
修改 4 个文件,包含 81 行新增19 行删除
+10 -7
查看文件
@@ -12,18 +12,21 @@
<div class="posts">
<div class="post on-list" th:each="post : ${posts.items}">
<h1 class="post-title">
<a th:text="${post.spec.title}" th:href="${post.status.permalink}">Post Title</a>
<a th:text="'<' + ${post.spec.title} + '>'" th:href="${post.status.permalink}">Post Title</a>
</h1>
<div class="post-meta">
<span class="post-date" th:text="${#dates.format(post.spec.publishTime,'yyyy-MM-dd')}">
Post CreateTime
</span>
<span
class="post-author"
th:with="contributor = ${post.contributors[0]}"
th:text="${':: '+contributor.displayName}"
>:: Author</span
>
<span class="post-separator">
<span></span>
<span></span>
<span></span>
<span></span>
</span>
<span class="post-author" th:with="contributor = ${post.contributors[0]}" th:text="${contributor.displayName}">
Author
</span>
</div>
<span class="post-tags-inline" th:each="tag : ${post.tags}">
<a
+8 -2
查看文件
@@ -5,10 +5,16 @@
>
<th:block th:fragment="content">
<div class="post">
<h1 class="post-title" th:text="${post.spec.title}">Post Title</h1>
<h1 class="post-title" th:text="'<' + ${post.spec.title} + '>'">Post Title</h1>
<div class="post-meta">
<span class="post-date" th:text="${#dates.format(post.spec.publishTime,'yyyy-MM-dd')}"> publishTime </span>
<span class="post-author" th:text="${':: '+post.owner.displayName}">:: Author</span>
<span class="post-separator">
<span></span>
<span></span>
<span></span>
<span></span>
</span>
<span class="post-author" th:text="${post.owner.displayName}">Author</span>
</div>
<span class="post-tags-inline" th:each="tag : ${post.tags}">
<a