{% load wagtailimages_tags static home_tags %}
{% 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 %} 目前沒有文章 {% endif %} {% endwith %}
{% 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 %}