chaoswest.tv/templates/macros/blog.html

25 lines
727 B
HTML
Raw Normal View History

2022-01-20 23:51:09 +01:00
{%- macro render_blog_post(post, from_index=false) %}
2022-05-01 14:51:42 +02:00
<article>
2024-01-21 23:22:19 +01:00
{% if from_index %}
{% if post.logo is defined %}
<a href="{{ post|url(absolute=True) }}">
<img alt="{{ post.logodesc }}" src="{{ post|url(absolute=True)}}{{ post.logo | url(absolute=False) }}" />
</a>
{% else %}
<h1 class="headline"><a href="{{ post|url }}">{{ post.title }}</a></h1>
{% endif %}
{% else %}
<h1 class="headline"><a>{{ post.title }}</a></h1>
{% if post.logo is defined %}
<img alt="{{ post.logodesc }}" src="{{ post.logo | url }}" />
{% endif %}
{% endif %}
2022-01-20 23:51:09 +01:00
{% if from_index -%}
{{ post.preview }}
{% else -%}
{{ post.body }}
{% endif -%}
2022-05-01 14:51:42 +02:00
</article>
2022-01-20 23:51:09 +01:00
{% endmacro -%}