mirror of
https://github.com/kaka111222333/kaka111222333.github.io.git
synced 2025-12-16 23:09:53 +08:00
59 lines
1.3 KiB
HTML
59 lines
1.3 KiB
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
{% if site.posts.size == 0 %}
|
|
<h2>No post found</h2>
|
|
{% endif %}
|
|
|
|
<div class="posts">
|
|
{% for post in paginator.posts %}
|
|
{% unless post.draft %}
|
|
<article class="post">
|
|
<h1>
|
|
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
|
|
</h1>
|
|
|
|
<div clsss="meta">
|
|
<span class="date">
|
|
{{ post.date | date: "%Y-%m-%d" }}
|
|
</span>
|
|
|
|
<ul class="tag">
|
|
{% for tag in post.tags %}
|
|
<li>
|
|
<a href="{{ site.url }}{{ site.baseurl }}/tags#{{ tag }}">
|
|
{{ tag }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="entry">
|
|
{{ post.excerpt | truncate: 200 }}
|
|
</div>
|
|
|
|
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
|
|
</article>
|
|
{% endunless %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="pagination">
|
|
{% if paginator.previous_page %}
|
|
<span class="prev">
|
|
<a href="{{ site.baseurl }}{{ paginator.previous_page_path }}" class="prev">
|
|
← 上一页
|
|
</a>
|
|
</span>
|
|
{% endif %}
|
|
{% if paginator.next_page %}
|
|
<span class="next">
|
|
<a href="{{ site.baseurl}}{{ paginator.next_page_path }}" class="next">
|
|
下一页 →
|
|
</a>
|
|
</span>
|
|
{% endif %}
|
|
</div>
|