forked from aksakalli/jekyll-doc-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathallposts.html
More file actions
17 lines (15 loc) · 446 Bytes
/
allposts.html
File metadata and controls
17 lines (15 loc) · 446 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
title: Blog
layout: default
sectionid: blog
---
<div class="container">
<div class="inner-content">
<h1>All Blogs</h1> {% for page in site.posts %}
<p>
<strong><a href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a></strong>
<span>on {{ page.date | date: "%B %e, %Y" }} {% if page.author %} by {{ page.author }}{% endif %}</span>
</p>
{% endfor %}
</div>
</div>