-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
84 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<rss version="2.0"> | ||
<channel> | ||
<title>💩 Poops/</title> | ||
<description>Straightforward, no-bullshit bundler for the web./</description> | ||
<link>https://stamat.github.io/poops</link> | ||
<lastBuildDate>Thu, 21 Sep 2023 20:57:25 +0200</lastBuildDate> | ||
|
||
<pubDate>Thu, 21 Sep 2023 15:42:00 +0200</pubDate> | ||
<ttl>1800</ttl> | ||
|
||
|
||
<item> | ||
<title>Blog Functionality</title> | ||
<link>https://stamat.github.io/poops/changelog/blog-functionality.html</link> | ||
<description>Hey folks, this is my second blog post.</description> | ||
<pubDate>Thu, 21 Sep 2023 15:42:00 +0200</pubDate> | ||
</item> | ||
|
||
<item> | ||
<title>Added Front Matter support!</title> | ||
<link>https://stamat.github.io/poops/changelog/front-matter.html</link> | ||
<description>Front matter is an awesome idea! Since the static site generator functionality of Poops is inspired by Jekyll and the genius of peeps that came up with the idea of front matter, I decided to add it to Poops as well. Made things super simple! And that's what Poops is all about. Making things simple.</description> | ||
<pubDate>Tue, 19 Sep 2023 02:00:00 +0200</pubDate> | ||
</item> | ||
|
||
</channel> | ||
</rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<rss version="2.0"> | ||
<channel> | ||
<title>{{ site.title }}/</title> | ||
<description>{{ site.description }}/</description> | ||
<link>{{ site.url }}</link> | ||
<lastBuildDate>{{ '' | date('ddd, DD MMM YYYY HH:mm:ss ZZ') }}</lastBuildDate> | ||
{% set lastPost = changelog.items[0] %} | ||
<pubDate>{{ lastPost.date | date('ddd, DD MMM YYYY HH:mm:ss ZZ') }}</pubDate> | ||
<ttl>1800</ttl> | ||
{% set posts = changelog.items.slice(0, 10) %} | ||
{% for post in posts %} | ||
<item> | ||
<title>{{ post.title }}</title> | ||
<link>{{ site.url }}/{{ post.url }}</link> | ||
<description>{{ post.description }}</description> | ||
<pubDate>{{ post.date | date('ddd, DD MMM YYYY HH:mm:ss ZZ') }}</pubDate> | ||
</item> | ||
{% endfor %} | ||
</channel> | ||
</rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters