Skip to content

Instantly share code, notes, and snippets.

@yanping
yanping / index.html
Created November 20, 2012 07:33
博客首页异步加载分页
<div class="wrapper">
{% for post in paginator.posts %}
<div class="article">
<h1>
<span>{{ post.date | date: "%b %d, %Y" }}</span>
<a href="{{ post.url }}">{{ post.title }}</a>
</h1>
{{ post.content}}
</div>