From 6cdd0b20decf9b27564bd046bb1bb340121cdfb8 Mon Sep 17 00:00:00 2001 From: Oliver Davies <339813+opdavies@users.noreply.github.com> Date: Wed, 31 Jul 2024 22:27:25 +0100 Subject: [PATCH] Delete source/daily.json.twig --- source/daily.json.twig | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 source/daily.json.twig diff --git a/source/daily.json.twig b/source/daily.json.twig deleted file mode 100644 index 3ec9f2029..000000000 --- a/source/daily.json.twig +++ /dev/null @@ -1,19 +0,0 @@ ---- -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 %} - ] -}