We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7086512 commit 73bf7c2Copy full SHA for 73bf7c2
src/index.md
@@ -1,12 +1,16 @@
1
---
2
# Feel free to add content and custom Front Matter to this file.
3
4
-layout: default
+layout: page
5
+title: Posts
6
7
-# S2P :: Notes
8
+<ul>
9
+ {% for post in collections.posts.resources %}
10
+ <li>
11
+ <a href="{{ post.relative_url }}">{{ post.data.title }}</a>
12
+ </li>
13
+ {% endfor %}
14
+</ul>
15
-
-Eventually there will be an index here.
-This is a place for Gregory Brown to post and share notes.
16
+If you have a lot of posts, you may want to consider adding [pagination](https://www.bridgetownrb.com/docs/content/pagination)!
0 commit comments