20 lines
542 B
Twig
20 lines
542 B
Twig
---
|
|
permalink: /daily.json
|
|
use: [daily_emails]
|
|
---
|
|
|
|
{
|
|
"emails": [
|
|
{% for email in data.daily_emails %}
|
|
{
|
|
"title": "{{ email.title|trim }}",
|
|
"date": "{{ email.date }}",
|
|
"permalink": "{{ email.permalink.relativeUrlPath }}",
|
|
"text": {{ email.blocks.content|replace({ '\n': '' })|json_encode|raw }},
|
|
"cta": "{{ email.cta }}",
|
|
"tags": [{% for tag in email.tags %}"{{ tag }}"{% if not loop.last %},{% endif %}{% endfor %}]
|
|
}{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
]
|
|
}
|