{% load wagtailimages_tags static home_tags %} {% if show_hero != False %}
{% with first_article=items|first %} {% if first_article %}
{% if first_article.cover_image %} {% image first_article.cover_image max-410x293 as cover %} {{ first_article.title }} {% else %} {% random_default_cover as default_cover %} {{ first_article.title }} {% endif %}
{{ first_article.title }}
{% if first_article.intro %}
{{ first_article.intro }}
{% endif %}
{{ first_article.body_search_text|truncatechars:200 }}
{% else %} {{ empty_message|default:"目前沒有文章" }} {% endif %} {% endwith %}
{% endif %} {% if show_hero != False %} {% if items|length > 2 %}
{% for article in items|slice:"1:" %}
{% if article.cover_image %} {% image article.cover_image max-410x218 as cover %} {{ article.title }} {% else %} {% random_default_cover as default_cover %} {{ article.title }} {% endif %}
{{ article.title }}
{% endfor %}
{% endif %} {% else %} {% if items|length %}
{% for article in items %}
{% if article.cover_image %} {% image article.cover_image max-410x218 as cover %} {{ article.title }} {% else %} {% random_default_cover as default_cover %} {{ article.title }} {% endif %}
{{ article.title }}
{% endfor %}
{% else %} {{ empty_message|default:"沒有符合條件的文章" }} {% endif %} {% endif %}