blog-item.html.twig 967 B

1234567891011121314151617181920212223242526272829303132
  1. <div>
  2. {% if not hero_image_name %}
  3. <div class="content-title text-center">
  4. {% include 'partials/blog/title.html.twig' with {title_level: 'h2'} %}
  5. {% if page.header.subtitle %}
  6. <h3 >{{ page.header.subtitle }}</h3>
  7. {% endif %}
  8. {% include 'partials/blog/taxonomy.html.twig' %}
  9. </div>
  10. {% endif %}
  11. <div class="e-content">
  12. {{ page.content|raw }}
  13. </div>
  14. <div class="card-image">
  15. {% for image in page.media.images %}
  16. {{ image.html }}
  17. {% endfor %}
  18. </div>
  19. </div>
  20. <p class="prev-next text-center">
  21. {% if not page.isLast %}
  22. <a class="btn" href="{{ page.prevSibling.url }}"><i class="fa fa-angle-left"></i> {{ 'THEME_QUARK.BLOG.ITEM.PREV_POST'|t }}</a>
  23. {% endif %}
  24. {% if not page.isFirst %}
  25. <a class="btn" href="{{ page.nextSibling.url }}">{{ 'THEME_QUARK.BLOG.ITEM.NEXT_POST'|t }} <i class="fa fa-angle-right"></i></a>
  26. {% endif %}
  27. </p>