mirror of
https://github.com/kaka111222333/kaka111222333.github.io.git
synced 2025-12-18 15:54:37 +08:00
97 lines
2.2 KiB
HTML
97 lines
2.2 KiB
HTML
---
|
|
layout: default
|
|
---
|
|
<script src="https://unpkg.com/feather-icons"></script>
|
|
|
|
{% if site.posts.size == 0 %}
|
|
<h2>No post found</h2>
|
|
{% endif %}
|
|
|
|
<div class="posts">
|
|
|
|
{% for post in paginator.posts %}
|
|
{% if post.pinned==true %}
|
|
<article class="post pinned">
|
|
<h1>
|
|
<span title="pinned"><i data-feather="anchor"></i></span><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>
|
|
|
|
<script>
|
|
feather.replace()
|
|
</script>
|
|
</div>
|
|
|
|
<div class="entry">
|
|
{{ post.excerpt | truncate: 200 }}
|
|
</div>
|
|
|
|
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
|
|
</article>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% for post in paginator.posts %}
|
|
{% unless post.pinned %}
|
|
<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>
|