chore: links + grammar
This commit is contained in:
parent
88aae3f2e3
commit
8e93412d7a
8 changed files with 31 additions and 33 deletions
|
@ -5,13 +5,17 @@ permalink: /feed.xml
|
|||
{% layout "./_includes/feeds/feed.liquid" %}
|
||||
{% block title %}All posts • Cory Dransfeldt{% endblock %}
|
||||
{% block self %}feed.xml{% endblock %}
|
||||
{% block update %}{{ collections.posts[0].date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}
|
||||
{% block update %}
|
||||
{{ collections.posts[0].date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}
|
||||
{% block entries %}
|
||||
{% assign posts = collections.posts | reverse %}
|
||||
{% for post in posts limit: 15 %}
|
||||
{% capture entry_link %}
|
||||
{{ site.url }}{{ post.url }}?utm_campaign=syndication&utm_source=rss
|
||||
{% endcapture %}
|
||||
<entry>
|
||||
<title>{{ post.data.title }}</title>
|
||||
<link href="{{ site.url }}{{ post.url }}" />
|
||||
<link href="{{ entry_link | encodeAmp }}" />
|
||||
<updated>{{ post.date | date: "%m.%d.%Y" }}</updated>
|
||||
<id>{{ site.url }}{{ post.url }}</id>
|
||||
<content type="html">
|
||||
|
@ -19,4 +23,4 @@ permalink: /feed.xml
|
|||
</content>
|
||||
</entry>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
{% endblock %}
|
Reference in a new issue