19 lines
309 B
Markdown
19 lines
309 B
Markdown
---
|
|
layout: journal
|
|
---
|
|
|
|
# This is the index page.
|
|
|
|
Certain Stuff can go here, and then the most recent
|
|
entry shows below.
|
|
|
|
## Posts:
|
|
{% for post in site.posts %}
|
|
- {{ post.title }}
|
|
{% endfor %}
|
|
|
|
---
|
|
|
|
{% assign recent = site.posts | where: "aut", page.aut | first %}
|
|
|
|
{{ recent.content }}
|