mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
11 lines
432 B
HTML
11 lines
432 B
HTML
<?php if (count($formModel->referer) > 0): ?>
|
|
<div class="form-control control-simplelist with-icons">
|
|
<ul>
|
|
<?php foreach ((array) $formModel->referer as $referer): ?>
|
|
<li class="oc-icon-file-o"><?= $referer ?></li>
|
|
<?php endforeach ?>
|
|
</ul>
|
|
</div>
|
|
<?php else: ?>
|
|
<div class="form-control"><em>There were no detected referers to this URL.</em></div>
|
|
<?php endif ?> |