| Server IP : 146.70.56.164 / Your IP : 216.73.217.104 Web Server : LiteSpeed System : Linux buc03.virtono.com 4.18.0-348.23.1.lve.el8.x86_64 #1 SMP Wed Apr 27 06:58:00 EDT 2022 x86_64 User : iasiro ( 1486) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/iasiro/ |
Upload File : |
<?php if (isset($logo_home_sm) && $logo_home_sm) { ?>
<a href="<?= Language::url('/'); ?>">
<img alt="" src="<?= url($logo_home_sm->path); ?>" title="<?= $logo_home_sm->name; ?>" alt="<?= $logo_home_sm->name; ?>" class="logo">
</a>
<?php } ?>
<?php
if (isset($general_pages)) {
foreach ($general_pages as $item) {
?>
<div class="top_menu">
<a href='<?= $item->url; ?>#hm' class="<?= isset($parrents_ids) && in_array($item->id, $parrents_ids) ? 'active' : ''; ?>">
<div class="left">
<?php if ($item->image_icon_active && isset($parrents_ids) && in_array($item->id, $parrents_ids)) { ?>
<img alt="<?=$item->title;?>" title="<?=$item->title;?>" src="<?= url($item->image_icon_active->path); ?>">
<?php } elseif ($item->image_icon) { ?>
<img alt="<?=$item->title;?>" title="<?=$item->title;?>" src="<?= url($item->image_icon->path); ?>">
<?php } ?>
</div>
<div class="left title third"><?= strtok($item->title, " "); ?> <span><?= ltrim($item->title, strtok($item->title, " ")); ?></span></div></a>
</div>
<?php
}
}
?>