Rename "post" to "entry" (but not in collections)
This commit is contained in:
parent
3b922309dd
commit
b8472db2b7
|
@ -11,10 +11,10 @@ eleventyNavigation:
|
||||||
|
|
||||||
# Journal
|
# Journal
|
||||||
|
|
||||||
All my posts.
|
All my journal entries.
|
||||||
|
|
||||||
<ol>
|
<ol>
|
||||||
{% for post in collections.post reversed %}
|
{% for entry in collections.post reversed %}
|
||||||
<li>{{ post.date | date: "%Y-%m-%d" }}: <a href="{{ post.url }}">{{ post.data.title }}</a></li>
|
<li>{{ entry.date | date: "%Y-%m-%d" }}: <a href="{{ entry.url }}">{{ entry.data.title }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ol>
|
</ol>
|
||||||
|
|
Loading…
Reference in a new issue