1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <div class="content-item">
- <div class="e-content">
- <div class="media">
- {% for module in page.collection() %}
- {{ module.content }}
- {% endfor %}
-
- {% for image in page.media %}
- {{ image.html }}
- {% endfor %}
- </div>
- <div class="content">
- <div class="txt">
- <h3><a href="{{ page.url }}">{{header.title}}</a></h3>
- {{ page.content }}
- </div>
- <div class="taxonomy">
- {% if page.header.taxonomy.category %}
- {% include 'partials/blog/taxonomy.html.twig' with { taxonomy: 'category'} %}
- {% endif %}
- </div>
- </div>
- </div>
- </div>
- <!-- <p class="prev-next">
- {% if not page.isLast %}
- <a class="btn prev" href="{{ page.prevSibling.url }}">{{ 'BLOG.ITEM.PREV_POST'|t}}</a>
- {% endif %}
- {% if not page.isFirst %}
- <a class="btn next" href="{{ page.nextSibling.url }}">{{ 'BLOG.ITEM.NEXT_POST'|t }}</i></a>
- {% endif %}
- </p> -->
|