update layout

This commit is contained in:
2025-06-16 01:43:51 +09:00
parent a76933c23b
commit e917c563f2
6 changed files with 6 additions and 19 deletions

View File

@ -248,7 +248,7 @@ a.view-markdown:any-link {
}
.post-title a {
color: #1f2328;
color: var(--theme-color);
text-decoration: none;
font-size: 18px;
font-weight: 600;

View File

@ -20,19 +20,6 @@
<a href="{{ post.url }}">{{ post.title }}</a>
</h3>
{% if post.excerpt %}
<p class="post-excerpt">{{ post.excerpt }}</p>
{% endif %}
<div class="post-actions">
<a href="{{ post.url }}" class="read-more">Read more</a>
{% if post.markdown_url %}
<a href="{{ post.markdown_url }}" class="view-markdown" title="View Markdown">.md</a>
{% endif %}
{% if post.translation_url %}
<a href="{{ post.translation_url }}" class="view-translation" title="View Translation">🌐</a>
{% endif %}
</div>
</div>
</article>
{% endfor %}