37 lines
881 B
Twig
37 lines
881 B
Twig
|
{{ header }}
|
||
|
<div id="cms-blog" class="container">
|
||
|
<ul class="breadcrumb">
|
||
|
{% for breadcrumb in breadcrumbs %}
|
||
|
<li class="breadcrumb-item"><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
<div class="row">
|
||
|
{{ column_left }}
|
||
|
|
||
|
<div id="content" class="col">
|
||
|
{{ content_top }}
|
||
|
<h2>{{ heading_title }}</h2>
|
||
|
|
||
|
{% if thumb %}
|
||
|
<img src="{{ thumb }}" alt="{{ heading_title }}" title="{{ heading_title }}" class="img-thumbnail"/>
|
||
|
{% endif %}
|
||
|
|
||
|
<div>{{ description }}</div>
|
||
|
|
||
|
<hr/>
|
||
|
<div id="comment">{{ comment }}</div>
|
||
|
|
||
|
{{ content_bottom }}
|
||
|
</div>
|
||
|
|
||
|
{{ column_right }}
|
||
|
</div>
|
||
|
</div>
|
||
|
<script type="text/javascript"><!--
|
||
|
$('#comment').on('click', '.pagination a', function(e) {
|
||
|
e.preventDefault();
|
||
|
|
||
|
$('#comment').load(this.href);
|
||
|
});
|
||
|
//--></script>
|
||
|
{{ footer }}
|