You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
692 B
28 lines
692 B
---
|
|
title: Blog
|
|
layout: default
|
|
sectionid: blog
|
|
---
|
|
|
|
<section class="content wrap documentationContent">
|
|
{% include nav_blog.html %}
|
|
<div class="inner-content">
|
|
{% for page in site.posts %}
|
|
<div class="post-list-item">
|
|
<h1><a href="/react{{ page.url }}">{{ page.title }}</a></h1>
|
|
<p class="meta">{{ page.date | date: "%B %e, %Y" }} by {{ page.author }}</p>
|
|
|
|
<hr>
|
|
|
|
<div class="post">
|
|
{{ page.excerpt }}
|
|
{% if page.excerpt != page.content %}
|
|
<p>
|
|
<a href="/react{{ page.url }}">Continue Reading →</a>
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|
|
|