konfluks/konfluks/templates/hashtag.md

28 lines
1.1 KiB
Markdown
Raw Normal View History

2021-12-15 10:30:10 +00:00
---
2022-03-03 06:00:09 +00:00
date: {{ post_metadata.created_at }} #2021-06-10T10:46:33+02:00
2021-12-15 10:30:10 +00:00
draft: false
2022-09-15 16:37:25 +00:00
contributors: ["{{ post_metadata.account.display_name }}"]
2022-03-03 06:00:09 +00:00
avatar: {{ post_metadata.account.avatar }}
title: {{ post_metadata.account.display_name }}
tags: [{% for i in post_metadata.tags %} "{{ i.name }}", {% endfor %}]
2022-09-09 11:22:32 +00:00
images: [{% for i in post_metadata.media_attachments %}{% if i.type == "image" %}"{{ i.url | localize_media_url }}", {%endif%}{% endfor %}]
videos: [{% for i in post_metadata.media_attachments %}{% if i.type == "video" %}"{{ i.url | localize_media_url }}", {%endif%}{% endfor %}]
2021-12-15 10:30:10 +00:00
---
{% for item in post_metadata.media_attachments %}
2022-09-09 11:22:32 +00:00
{% if item.type == "image" %}
2021-12-15 10:30:10 +00:00
<img src="{{item.url | localize_media_url }}" alt="{{item.description}}">
2022-09-09 11:22:32 +00:00
{% endif %}
{% endfor %}
{% for item in post_metadata.media_attachments %}
{% if item.type == "video" %}
<video controls width="540px" preload="none" poster="thumbnail.png">
<source src="{{item.url | localize_media_url }}" type="video/mp4">
{% if item.description %}{{item.description}}{% endif %}
</video>
{% endif %}
2021-12-15 10:30:10 +00:00
{% endfor %}
2021-12-15 10:41:35 +00:00
{{ post_metadata.content | filter_mastodon_urls }}