{% block preview %}

	<div class="layout-preview blocks-preview">

		<h3>Formulaire de contact</h3>

		<dl>
			{% if post.get_field('phone') is not empty %}
				<dt>Téléphone</dt>
				<dd>{{ post.get_field('phone') }}
			{% endif %}
			{% if post.get_field('fax') is not empty %}
				<dt>Télécopieur</dt>
				<dd>{{ post.get_field('fax') }}
			{% endif %}
			{% if post.get_field('email') is not empty %}
				<dt>Courriel</dt>
				<dd>
					<a href="mailto:{{ post.get_field('email') }}">
						{{ post.get_field('email') }}
					</a>
				</dd>
			{% endif %}
			{% if post.get_field('address') is not empty %}
				<dt>Nos bureaux</dt>
				<dd>{{ post.get_field('address') }}</dd>
			{% endif %}
		</dl>

	</div>

{% endblock %}