mirror of
https://github.com/zebrajr/react.git
synced 2025-12-07 12:20:38 +01:00
- Add pagination - Display full content in /blog - Truncate Recent posts - Add permalink that lists all the blog posts - Add spacing and bullet around recent posts to make it more readable
16 lines
394 B
HTML
16 lines
394 B
HTML
---
|
|
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 %}
|
|
<p><strong><a href="/react{{ page.url }}">{{ page.title }}</a></strong> on {{ page.date | date: "%B %e, %Y" }} by {{ page.author }}</p>
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|