{% set data = data ?: false %}{% set email = email ?: false %}{% set serviceORL = serviceORL ?: false %}{% set ORL = ORL ?: false %}{% set mediumAlignItemsCenter = mediumAlignItemsCenter ?: false %}{% set ORLServicePage = ORLServicePage ?: false %}{% set subtitleORLService = subtitleORLService ?: false %}{% set is_provider = is_provider ?: false %}{% if data %} <div class="cardsCoords wrapper-cards flex-container flex-dir-column {{mediumAlignItemsCenter ? " mediumalignitemscenter":" "}} {{serviceORL ? " cardscoords_serviceorl"}} {{data.link ? " wrapper-cards"}}" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <div class="cardsCoords-header grid-x align-middle align-justify {{email ? " mediumflexdircolumn":" "}}"> {% if data.coordTitle %} <h2 class=" cell small-12 cardsCoords-title" itemprop="name"> {% if data.link %} <a class="linkforCard" href="{{ data.link}}">{{data.coordTitle}}</a> {% else %} {{data.coordTitle}} {% endif %} </h2> {% if data.subtitleORLService %} <div class="cardsCoords-subtitle" itemprop="description">{{data.subtitleORLService}}</div> {% endif %} {% else %} <h2 class="cardsCoords-title">Coordonnées</h2> {% endif %} {% if email and data.email %} <a href="mailto:{{ data.email }}" class="cardsCoords-header-email btn">email</a> {% endif %} </div> <div class="cardsCoords-content grid-y align-justify"> {% if data.items.telSpec %} <div class="cardsCoords-content-item coords flex-container align-middle"> <img class="coords-image" src="{{asset('images/svg/icon_phone_grey.svg')}}"/> <div class="coords-text" itemprop="telephone"> {{data.items.telSpecDesc}} {{ data.items.telSpecDesc ? '<br/>':'' }} {{data.items.telSpec|nl2br}} </div> </div> {% else %} {% if data.items.tel1 %} <div class="cardsCoords-content-item coords flex-container align-middle"> <img class="coords-image" src="{{asset('images/svg/icon_phone_grey.svg')}}"/> <div class="coords-text" itemprop="telephone">{{data.items.tel1|nl2br}}</div> </div> {% endif %} {% if data.items.tel2 %} <div class="cardsCoords-content-item coords flex-container align-middle"> <img class="coords-image" src="{{asset('images/svg/icon_phone_grey.svg')}}"/> <div class="coords-text" itemprop="telephone">{{data.items.tel2|nl2br}}</div> </div> {% endif %} {% if data.items.tel3 %} <div class="cardsCoords-content-item coords flex-container align-middle"> <img class="coords-image" src="{{asset('images/svg/icon_phone_grey.svg')}}"/> <div class="coords-text" itemprop="telephone">{{data.items.tel3|nl2br}}</div> </div> {% endif %} {% endif %} <div class="cardsCoords-content-item coords flex-container align-middle"> <img class="coords-image" src="{{asset('images/svg/pinIcon_grey.svg')}}"/> <div class="coords-text"> <div itemprop="streetAddress">{{data.items.address|nl2br}}</div> {% if data.items.zipcedex %} <div> <span itemprop="postalCode">{{data.items.zipcedex}}</span> <span itemprop="addressLocality"> {{data.items.citycedex}}</span> </div> {% else %} <div> <span itemprop="postalCode">{{data.items.zip}}</span> <span itemprop="addressLocality"> {{data.items.city}}</span> </div> {% endif %} {% if data.items.bp %} <div itemprop="postOfficeBoxNumber">{{data.items.bp}}</div> {% endif %} </div> </div> {% if data.items.address2 %} {% if data.items.tel1address2 %} <div class="cardsCoords-content-item coords flex-container align-middle"> <img class="coords-image" src="{{asset('images/svg/icon_phone_grey.svg')}}"/> <div class="coords-text" itemprop="telephone">{{data.items.tel1address2|nl2br}}</div> </div> {% endif %} {% if data.items.tel2address2 %} <div class="cardsCoords-content-item coords flex-container align-middle"> <img class="coords-image" src="{{asset('images/svg/icon_phone_grey.svg')}}"/> <div class="coords-text" itemprop="telephone">{{data.items.tel2address2|nl2br}}</div> </div> {% endif %} <div class="cardsCoords-content-item coords flex-container align-middle"> <img class="coords-image" src="{{asset('images/svg/pinIcon_grey.svg')}}"/> <div class="coords-text"> <div itemprop="streetAddress">{{data.items.address2|nl2br}}</div> <div> <span itemprop="postalCode">{{data.items.zipaddress2}}</span> <span itemprop="addressLocality"> {{data.items.cityaddress2}} </span> </div> {% if data.items.zipcedexaddress2 %} <div>{{data.items.zipcedexaddress2}} {{data.items.citycedexaddress2}} </div> {% endif %} </div> </div> {% endif %} </div> </div>{% endif %}