2013-08-27 07:30:46 +08:00
|
|
|
---
|
|
|
|
|
title: Blog
|
|
|
|
|
layout: default
|
|
|
|
|
sectionid: blog
|
|
|
|
|
id: all-posts
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
<section class="content wrap documentationContent nosidebar">
|
|
|
|
|
<div class="inner-content">
|
|
|
|
|
<h1>All Posts</h1>
|
|
|
|
|
{% for page in site.posts %}
|
2015-10-15 08:32:57 +08:00
|
|
|
<p><strong><a href="/react{{ page.url }}">{{ page.title }}</a></strong> on {{ page.date | date: "%B %e, %Y" }} by
|
|
|
|
|
{% for author in page.authors %}
|
2015-10-16 03:18:15 +08:00
|
|
|
{{ author.name }}
|
2015-10-15 08:32:57 +08:00
|
|
|
{% if forloop.last == false %} and {% endif %}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</p>
|
2013-08-27 07:30:46 +08:00
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|