mirror of
https://github.com/pierre42100/comunic
synced 2024-11-17 02:51:13 +00:00
19 lines
558 B
Twig
19 lines
558 B
Twig
{% embed 'partials/base.html.twig' %}
|
|
|
|
{% block content %}
|
|
{% if config.plugins.breadcrumbs.enabled %}
|
|
{% include 'partials/breadcrumbs.html.twig' %}
|
|
{% endif %}
|
|
|
|
<div class="blog-content-item grid pure-g-r">
|
|
<div id="item" class="block pure-u-2-3 h-entry">
|
|
{% include 'partials/blog_item.html.twig' with {'blog':page.parent, 'truncate':false} %}
|
|
</div>
|
|
<div id="sidebar" class="block size-1-3 pure-u-1-3">
|
|
{% include 'partials/sidebar.html.twig' with {'blog':page.parent}%}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% endembed %}
|