diff --git a/_config.yml b/_config.yml index 0bf05f4..ac568f7 100755 --- a/_config.yml +++ b/_config.yml @@ -16,7 +16,7 @@ codepenUsername: # Build settings permalink: /:year/:month/:title markdown: kramdown -include: [_pages] +include: [_pages, _mastodon] exclude: [_site, CHANGELOG.md, LICENSE, README.md] sass: style: compressed diff --git a/_mastodon/index.md b/_mastodon/index.md new file mode 100644 index 0000000..388699e --- /dev/null +++ b/_mastodon/index.md @@ -0,0 +1,11 @@ +--- +title: paperbay.org Mastodon - Archive of my posts +layout: page +--- + +{% assign pages = site.pages | where_exp: 'page', 'page.post_id' %} +{% for page in pages %} +{% if page.title %} +- {{page.date}} - [{{page.post_id}}]({{page.url}}) {{page.tags | sort_natural | join: " "}} +{% endif %} +{% endfor %}