{% extends "base.twig" %}

{% block body %}
	
	<div role="main" class="white content-padding" id="main-content-area">
		<div class="content-wrapper">
			
			<article>
				{{ post.content }}
			</article>
			
		</div>
	</div>

{% endblock %}

{% block after_body_wrapper %}
<div class="wrapper">
	{% if news %}
		{% for new in news %}
			{% include "tease-news.twig" %}
		{% endfor %}
	{% endif %}
</div>
{% endblock %}


