mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-18 20:10:12 +01:00
29 lines
1.1 KiB
Text
29 lines
1.1 KiB
Text
---
|
|
---
|
|
[
|
|
{% for post in site.posts %}
|
|
{
|
|
"title" : "{{ post.title | strip_newlines | escape }}",
|
|
"category" : "{{ post.category }}",
|
|
"tags" : "{{ post.tags | join: ', ' | prepend: " " }}",
|
|
"url" : "{{ post.url | relative_url }}",
|
|
"date" : "{{ post.date | date: "%B %-d, %Y" }}",
|
|
"excerpt" : {{ post.content | strip_html | truncate: '250' | escape | jsonify }},
|
|
"content" : {{ post.content | strip_html | escape | jsonify }}
|
|
} {% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
{% if site.portfolio.size > 0 %},{% endif %}
|
|
{% for page in site.portfolio %}
|
|
{
|
|
{% if page.title != nil %}
|
|
"title" : "{{ page.title | strip_newlines | escape }}",
|
|
"category" : "{{ page.category }}",
|
|
"tags" : "{{ page.tags | join: ', ' | prepend: " " }}",
|
|
"url" : "{{ page.url | relative_url }}",
|
|
"date" : "{{ page.date | date: "%B %-d, %Y" }}",
|
|
"excerpt" : {{ page.content | strip_html | truncate: '250' | jsonify }},
|
|
"content" : {{ page.content | strip_html | escape | jsonify }}
|
|
{% endif %}
|
|
} {% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
]
|