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.
29 lines
729 B
29 lines
729 B
---
|
|
title: Blog
|
|
layout: default
|
|
sectionid: blog
|
|
---
|
|
|
|
<section class="content wrap blogContent">
|
|
{% include nav_blog.html %}
|
|
<div class="inner-content">
|
|
{% for page in paginator.posts %}
|
|
<div class="post-list-item">
|
|
{% include blog_post.html page=page content=page.content%}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<div class="pagination">
|
|
{% if paginator.previous_page %}
|
|
<a href="/react{{ paginator.previous_page_path }}" class="previous">
|
|
« Previous Page
|
|
</a>
|
|
{% endif %}
|
|
{% if paginator.next_page %}
|
|
<a href="/react{{ paginator.next_page_path }}" class="next">
|
|
Next Page »
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|