File: D:/HostingSpaces/EUmans/umansradepo.be/app/storage/views/9846aa161b563f05e8953fca9499af04
<div class="fact-row">
<div class="vertical-shadow top"></div>
<div class="content-container row">
<ul>
<?php if( \Config::get('app.radepoActive')): ?>
<?php foreach(trans('translations.facts') as $fact): ?>
<li style="width: <?php echo 100/sizeof(trans('translations.facts')); ?>%;" class="<?php echo $fact['id']; ?>">
<a href="<?php echo $fact['url']; ?>">
<div class="icon-placeholder"><span></span></div>
<p>
<?php echo $fact['text']; ?>
</p>
</a>
</li>
<?php endforeach; ?>
<?php else: ?>
<?php foreach(trans('isolation/translations.facts') as $fact): ?>
<li style="width: <?php echo 100/sizeof(trans('translations.facts')); ?>%;" class="<?php echo $fact['id']; ?>">
<a href="<?php echo $fact['url']; ?>">
<div class="icon-placeholder"><span></span></div>
<p>
<?php echo $fact['text']; ?>
</p>
</a>
</li>
<?php endforeach; ?>
<?php endif; ?>
</ul>
</div>
</div>