mastodon_email_bridge/templates/new_post.txt.j2

40 lines
1.3 KiB
Text
Raw Normal View History

2024-08-02 17:06:21 +02:00
{{ data['account']['display_name'] }} ({{ data['account']['username'] }})
{{ data['created_at'] }}
{{ data['spoiler'] }}
{{ data['content'] }}
{% if data['media_attachments'] %}
{% for media in data['media_attachments'] %}
{% if media['type'] == 'image' %}
{{ media['description'] }} => {{ media['preview_url'] }}
{% elif media['type'] == 'video' %}
{{ media['description'] }} => {{ media['url'] }}
{% elif media['type'] == 'audio' %}
{{ media['description'] }} => {{ media['url'] }}
{% endif %}
{% endfor %}
{% endif %}
{% if data['reblog'] %}
Reblogged from {{ data['reblog']['account']['display_name'] }} ({{ data['reblog']['account']['username'] }})
{{ data['reblog']['created_at'] }}
{{ data['reblog']['spoiler'] }}
{{ data['reblog']['content'] }}
{% if data['reblog']['media_attachments'] %}
{% for media in data['reblog']['media_attachments'] %}
{% if media['type'] == 'image' %}
{{ media['description'] }} => {{ media['preview_url'] }}
{% elif media['type'] == 'video' %}
{{ media['description'] }} => {{ media['url'] }}
{% elif media['type'] == 'audio' %}
{{ media['description'] }} => {{ media['url'] }}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
Original page: {{ data['url'] }}
Raw JSON data:
{{ json_raw }}