diff options
author | EuAndreh <eu@euandre.org> | 2020-02-05 22:05:04 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-02-05 22:05:04 -0300 |
commit | a6ae95d8bd0e9a933160fed6381b215d19d817ee (patch) | |
tree | aad1c7e0d360a6d99d2cc4a9209a075c252e60af /site.json | |
parent | Copy feed.atom from jekyll-feed (diff) | |
download | euandre.org-a6ae95d8bd0e9a933160fed6381b215d19d817ee.tar.gz euandre.org-a6ae95d8bd0e9a933160fed6381b215d19d817ee.tar.xz |
DIY Atom feed
Diffstat (limited to 'site.json')
-rw-r--r-- | site.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/site.json b/site.json new file mode 100644 index 0000000..0920bf8 --- /dev/null +++ b/site.json @@ -0,0 +1,26 @@ +--- +--- +{ + "posts": [ + {% for post in site.posts %} + { + "title": "{{ post.title | smartify }}", + "url": "{{ post.url }}", + "lang": "{{ post.lang }}", + "ref": "{{ post.ref }}", + "content": {{ post.content | strip_html | jsonify }} + }{% unless forloop.last %},{% endunless %} + {% endfor %} + ], + "pages": [ + {% for page in site.pages %} + { + "title": "{{ page.title | smartify }}", + "url": "{{ page.url }}", + "lang": "{{ page.lang }}", + "ref": "{{ page.ref }}", + "content": {{ page.content | strip_html | jsonify }} + }{% unless forloop.last %},{% endunless %} + {% endfor %} + ] +} |