mirror of
https://github.com/adulau/foo.be.git
synced 2024-11-21 09:17:06 +00:00
new: [mastodon archive] Mastodon post archive directory
This commit is contained in:
parent
376124b79b
commit
0210fee6ad
2 changed files with 12 additions and 1 deletions
|
@ -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
|
||||
|
|
11
_mastodon/index.md
Normal file
11
_mastodon/index.md
Normal file
|
@ -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 %}
|
Loading…
Reference in a new issue