<?php echo $__env->make('header', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<main id="main-content">
<?php if(!empty($adPlacement)): ?>
    <div class="ad-placement ad-banner">
        <div class="container">
            <?php echo($adPlacement); ?>        </div>
    </div>
<?php endif; ?>
    <div class="navigation">
        <div class="container">
            <a href="javascript:history.back()" class="back-link">&lt; Retour</a>
            <div class="hierarchy">
<?php foreach($hierarchy as $link): ?>
                <a href="<?php echo($link['url']); ?>"><?php echo($link['label']); ?></a>
<?php endforeach; ?>
            </div>
        </div>
    </div>
    <article>
        <div class="container">
            <main class="content col-md-8">
                <h1 class="leaf-title-blue purple"><?php echo($event['title']); ?></h1>
                <div class="article-datas">
                    <div class="social-networks">
                        <a href="https://www.facebook.com/sharer/sharer.php?u=<?php echo($event['href']); ?>" target="_blank"><span class="icon-pictos_partageFacebook"></span></a>
                        <a href="https://twitter.com/home?status=<?php echo($event['href']); ?>" target="_blank"><span class="icon-pictos_partageTwitter"></span></a>
                        <a href="https://plus.google.com/share?url=<?php echo($event['href']); ?>" target="_blank"><span class="icon-pictos_partageGoogle"></span></a>
                        <a href="javascript:window.print()"><span class="icon-pictos_imprimer"></span></a>
                    </div>
                </div>
                <div class="article-content"><?php echo($event['content']); ?></div>
            </main>
            <aside class="col-md-4">
                <figure class="hidden-xs hidden-sm frieze-rounded-white-left">
                    <?php echo($event['img_HTML']); ?>                </figure>
<?php if(!empty($event['ad-placement'])): ?>
                <div class="ad-placement ad-banner col-xs-12">
                    <?php echo($event['ad-placement']); ?>                </div>
<?php endif; ?>
            </aside>
        </div>
    </article>
<?php if(!empty($discoverToday['events'])): ?>
    <section class="discover-now frieze-separator-purple-top">
        <div class="container">
            <h1 class="leaf-title-blue white">à découvrir en ce moment</h1>
            <div class="event-container row js_draggable">
<?php foreach($discoverToday['events'] as $aEvent): ?>
                <article class="col-md-3">
                    <div>
                        <figure>
                            <a href="<?php echo($aEvent['href']); ?>">
                                <?php echo($aEvent['img_HTML']); ?>                            </a>
                        </figure>
                        <div class="event-infos frieze-rounded-white-top">
<?php if(!empty($aEvent['type'])): ?>
                                    <p class="type"><?php echo($aEvent['type']); ?></p>
<?php endif; ?>
                                    <h1><a href="<?php echo($aEvent['href']); ?>"><?php echo($aEvent['title']); ?></a></h1>
<?php if(!empty($aEvent['date'])): ?>
                                    <p class="date"><?php echo($aEvent['date']); ?></p>
<?php endif; ?>
<?php if(!empty($aEvent['category']['title'])): ?>
                                    <p class="category" data-color="<?php echo($aEvent['category']['color']); ?>">
                                        <a href="<?php echo($aEvent['category']['url']); ?>"><?php echo($aEvent['category']['title']); ?></a>
                                    </p>
<?php endif; ?>
<?php if(!empty($aEvent['place']['title'])): ?>
                                    <p class="place">
                                        <a href="<?php echo($aEvent['place']['url']); ?>">
                                            <span class="icon-pictos_localisation"></span>
                                            <?php echo($aEvent['place']['title']); ?>                                        </a>
                                    </p>
<?php endif; ?>
                        </div>
                    </div>
                </article>
<?php endforeach; ?>
            </div>
            <div class="all_events">
                <a href="<?php echo($discoverToday['button']['href']); ?>" type="button">Tous les événements du jour</a>
            </div>
        </div>
    </section>
<?php endif; ?>
</main>

<?php echo $__env->make('footer', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>