{% if news %}
<section class="blog blog-widget">
<div class="section-header">
<div class="container">
<h2 class="title"><span>{{ 'Latest'|trans }}</span> {{ 'news'|trans }} <a href="/" class="btn btn-sm btn-clean-dark">{{ 'Explore more'|trans }}</a></h2>
<p>
{{ 'Events, place to go, tour info & more'|trans|raw }}
</p>
</div>
</div>
<div class="container">
<div class="row">
{% for post in news %}
<div class="col-sm-4 blogItem">
<a href="{{ url('blog_post', {'slug': post.slug}) }}" title="{{ post.title }}">
<article>
<div class="image">
<img src="{{ asset('/images/'~post.image) }}" alt="{{ post.title }}">
</div>
<div class="text">
<div class="time">
<span>{{ post.createdAt|date("m") }}</span>
<span>{{ post.createdAt|date("d") }}</span>
<span>{{ post.createdAt|date("Y") }}</span>
</div>
<h2 class="h4 title">
{{ post.title }}
</h2>
<p>
{{ post.subtitle }}
</p>
</div>
</article>
</a>
</div>
{% endfor %}
</div>
</div>
</section>
{% endif %}