32 lines
931 B
PHP
32 lines
931 B
PHP
<?php
|
|
global $page;
|
|
?>
|
|
|
|
<ol id="fixed-nav">
|
|
<? if ( $page['id'] != 100 ):?>
|
|
<li class="fixed-item fixed-item-1">
|
|
<div class="fixed-item--wrapper">
|
|
<a href="/kontakt">
|
|
<div class="item-icon">
|
|
<img src="/upload/filemanager/icon/envelope-1.svg" alt="">
|
|
</div>
|
|
<div class="item-text">
|
|
<span>KONTAKT</span>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</li>
|
|
<?php endif; ?>
|
|
<li class="fixed-item fixed-item-2">
|
|
<div class="fixed-item--wrapper">
|
|
<a href="/salony-sprzedazy">
|
|
<div class="item-icon">
|
|
<img src="/upload/filemanager/icon/Phone-Mobile-Phone.svg" alt="">
|
|
</div>
|
|
<div class="item-text">
|
|
<span>SALONY</span>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</li>
|
|
</ol>
|