forked from facebook/react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 729 Bytes
/
index.html
File metadata and controls
29 lines (27 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
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>