Last active
December 17, 2015 23:29
-
-
Save yanping/5689265 to your computer and use it in GitHub Desktop.
jekyll对read more的原生支持
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
layout: default | |
title: Welcome to | |
isHome: true | |
--- | |
<!--from https://github.com/jsw0528/MrZhang.me/blob/gh-pages/_index.html--> | |
{% for post in paginator.posts %} | |
<article class="entry" id="{{ post.id }}"> | |
<header> | |
<h1 class="entry-title"> | |
<a href="{{ post.url }}">{{ post.title }}</a> | |
</h1> | |
<p class="entry-meta"> | |
<time class="iconfont-time">{{ post.date | date: '%Y/%m/%d %A' }}</time> | |
</p> | |
</header> | |
{% assign fragments = post.content | split: '<!-- more -->' %} | |
{% assign size = fragments | size %} | |
{{ fragments | first }} | |
{% if size > 1 %}<p><a href="{{ post.url }}">继续阅读 →</a></p>{% endif %} | |
</article> | |
{% endfor %} | |
{% include pagination.html %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment