c718e7e62f
Add "Read More" to the end of post excerpt, and support to click the excerpt to open the post.
51 lines
1.6 KiB
HTML
51 lines
1.6 KiB
HTML
{%- if page.paginator -%}
|
|
{%- assign paginator = page.paginator -%}
|
|
{%- elsif paginator == nil -%}
|
|
{%- assign paginator = site -%}
|
|
{%- endif -%}
|
|
|
|
{%- if paginator.posts.size > 0 -%}
|
|
<div class="pagination">
|
|
<!-- Post list links -->
|
|
<ul class="post-list">
|
|
{%- for post in paginator.posts -%}
|
|
<li>
|
|
{%- assign date_format = site.yat.date_format | default: "%b %-d, %Y" -%}
|
|
|
|
{% assign article = post.content %}
|
|
{% assign lang = post.lang %}
|
|
{%- include functions.html func='get_reading_time' -%}
|
|
{% assign reading_time = return %}
|
|
{%- include functions.html func='get_article_excerpt' -%}
|
|
{% assign excerpt = return %}
|
|
{%- assign post_url = post.url | relative_url -%}
|
|
|
|
<h2 class="post-title">
|
|
<a class="post-link" href="{{ post_url }}">
|
|
{{ post.title | escape }}
|
|
</a>
|
|
</h2>
|
|
<div class="post-meta">
|
|
<span class="post-date"><i class="fa fa-calendar"></i> {{ post.date | date: date_format }}</span>
|
|
<span class="post-reading-time left-vsplit"><i class="fa fa-clock-o"></i> {{ reading_time }}</span>
|
|
</div>
|
|
<a class="post-excerpt" href="{{ post_url }}">
|
|
<p>
|
|
{{ excerpt }} <span class="read_more">Read More</span>
|
|
</p>
|
|
</a>
|
|
<div class="post-tags">
|
|
{%- for tag in post.tags -%}
|
|
<a class="post-tag" href="{{ '/tags.html ' | relative_url }}#{{tag}}">#{{tag}}</a>
|
|
{%- endfor -%}
|
|
</div>
|
|
</li>
|
|
{%- endfor -%}
|
|
</ul>
|
|
|
|
<!-- Pagination links -->
|
|
{%- if paginator.posts.size < site.posts.size -%}
|
|
{%- include views/paginator.html -%}
|
|
{%- endif -%}
|
|
</div>
|
|
{%- endif -%}
|