-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.json
More file actions
37 lines (36 loc) · 1.16 KB
/
Copy pathfeed.json
File metadata and controls
37 lines (36 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
permalink: /feed.json
pagination:
include: All
---
{
"user_comment": "this feed allows you to read the posts from this site in any feed reader that supports the JSON Feed format. to add this feed to your reader, copy the following URL - https://simonomi.dev/feed.json - and add it your reader",
"title": "alice pellerin's blog",
"version": "https://jsonfeed.org/version/1.1",
"home_page_url": "https://simonomi.dev",
"feed_url": "https://simonomi.dev/feed.json",
"icon": "https://simonomi.dev/images/logo-circle.png",
"favicon": "https://simonomi.dev/images/logo-circle.png",
"authors": [
{
"name": "alice pellerin",
"url": "https://simonomi.dev",
"avatar": "https://simonomi.dev/images/logo-circle.png"
}
],
"language": "en-US",
"items": [
{%- for post in paginator.pages -%}
{%- if post.data.unlisted -%}
{%- continue -%}
{%- endif -%}
{
"id": "{{ post.slug }}",
"url": "{{ site.base_url }}/{{ post.permalink }}",
"title": "{{ post.title }}",
"content_text": "",
"date_published": "{{ post.published_date | date: "%Y-%m-%dT%H:%M:%S%:z" }}"
}{%- unless forloop.last -%},{%- endunless -%}
{%- endfor -%}
]
}