{% extends "base.twig" %}

{% block after_header %}
	{% include 'module/slider_module.twig' %}
{% endblock %}

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

{% endblock %}

{% block after_body_wrapper %}
	<div class="wrapper">
			{% if news %}
			{% for new in news %}
			<div class="half-lifts-content row no-margin flex flex-stretch flex-grow">
				<div class="col-xs-24 col-l-12 image-col no-margin-bottom relative">
					<div class="image-container relative">
						<div class="button-container from-l"><a class="link-button" href="{{new.link}}">Read more</a></div>
						<a href="{{new.link}}"><img alt="" src="{% if new._thumbnail_id %}{{new._thumbnail_id|image}}{% else %}{{ theme.link }}/assets/img/placeholder.png{% endif %}"></a>
					</div>
				</div>
				<div class="col-xs-24 col-l-12 content-col flex flex-middle no-margin-bottom">
					<div class="content-container">
						<span><h4>News</h4> | {{new.category}} | {{new.date}}</span>
						<h3><a href="{{new.link}}">{{new.title}}</a></h3>
						<p>{{ new.preview.length(25) }}</p>
						<div class="button-container to-l"><a class="link-button" href="{{post.news_link_link}}">{{post.news_link_text}}</a></div>
					</div>
				</div>
			</div>
			{% endfor %}
			{% endif %}

			<div class="half-lifts-content row no-margin flex flex-stretch flex-grow">
				<div class="col-xs-24 col-l-12 image-col no-margin-bottom relative">
					<div class="image-container relative">
						<div class="button-container from-l"><a class="link-button" href="{{post.lift_link_link}}">Read more</a></div>
						<a href="{{post.lift_link_link}}"><img alt="" src="{% if post.cmb_service_box_image %}{{post.cmb_service_box_image|image}}{% else %}{{ theme.link }}/assets/img/placeholder.png{% endif %}"></a>
					</div>
				</div>
				<div class="col-xs-24 col-l-12 content-col flex flex-middle no-margin-bottom">
					<div class="content-container">
						{{post.cmb_service_box_content|wysiwyg}}
						<div class="button-container to-l"><a class="link-button" href="{{post.lift_link_link}}">{{post.lift_link_text}}</a></div>
					</div>
				</div>
			</div>

			{% if upcoming_event %}
			<div class="half-lifts-content row no-margin flex flex-stretch flex-grow">
				<div class="col-xs-24 col-l-12 image-col no-margin-bottom">
					<div class="image-container relative">
						<div class="button-container from-l"><a class="link-button" href="{{upcoming_event.link}}">Read more</a></div>
						<a href="{{upcoming_event.link}}"><img alt="" src="{% if upcoming_event._thumbnail_id 
%}{{upcoming_event._thumbnail_id|image}}{% else %}{{ theme.link }}/assets/img/placeholder.png{% endif %}"></a>
					</div>
				</div>
				<div class="col-xs-24 col-l-12 content-col flex flex-middle no-margin-bottom">
					<div class="content-container">
						<h4 class="primary">Next event</h4>
						<h3><a href="{{upcoming_event.link}}">{{upcoming_event.title}}</a></h3>
						{{upcoming_event.excerpt}}
						<div class="button-container to-l"><a class="link-button" href="{{upcoming_event.link}}">{{post.events_link_text}}</a></div>
					</div>
				</div>
			</div>
			{% endif %}

	</div>

{# LinkedIn Juicer embed #}

{# 2026-02-20 : feed not working correctly. Requested removal for now  
<script type="text/javascript" src="https://www.juicer.io/embed/inion-oy/embed-code.js" async defer></script>
#}
 
{# // LinkedIn Juicer iframe end of #}

{% endblock %}




