| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php include 'header.php' ?>
- <section id="smallslider">
- <div class="subpage-head profile-head">
- <h1>Profilom</h1>
- </div>
- </section>
- <section id="content">
- <div class="text-wrap">
- <div class="breadcrumb"><a href="/">Home</a> » <a href="/profile/settings">Profilom</a> » <a href="#">Kedvenc ingatlanjaim</a></div>
- <div class="menu-block">
- <?php include 'profile_menu.php'; ?>
- </div>
- <div class="text-block-alt">
- <h2 class="head overload">Kedvenc ingatlanjaim</h2>
- <div class="results-block" style="padding-top: 0px; width: 100%;">
- <div class="result-list half fav-props">
- <?php foreach ($properties as $property) : if ($property->tipus=='') $property->tipus=$property->jelleg; ?>
- <div class="result-item" onclick="window.location='/<?=$property->ertekesites?>/<?=$property->tipus?>/<?=common::generateSlug($property->telepules)?>/<?=$property->id?>-<?=$property->ertekesites?>-<?=$property->tipus?>-<?=common::generateSlug($property->iranyitoszam)?>-<?=common::generateSlug($property->telepules)?><?php if ($property->terkepesmegjelenes=='1') echo '-'.common::generateSlug($property->utcanev) ?>';" style="height: 340px;">
- <figure style="background-image: url('<?=common::get_image_url_mark($property->indexkep)?>');"></figure>
- <span class="gallery"><i class="fas fa-camera"></i> <small><?=common::getPropertyImagesCount($property->regszam)?></small></span>
- <pre class="price"><?=formatize::currency($property->iranyar)?> <span class="currency">FT</span></pre>
- <?php if ($property->meret_netto!='0') : ?><span class="size"><?=$property->meret_netto?> m<sup>2</sup></span><?php endif; ?>
- <?php if ($property->meret_telek!=='0') : ?>
- <span class="site"><?=$property->meret_telek?> m<sup>2</sup> site</span>
- <?php endif; ?>
- <?php $szobasum = 0; $szobasum = $property->szoba_egesz+$property->szoba_fel; ?>
- <?php if ($szobasum!='0') : ?><span class="rooms"><?php echo $szobasum; ?> szoba</span><br><?php endif; ?>
- <?php if ($property->terkepesmegjelenes!='0') : ?>
- <span class="address"><?=$property->iranyitoszam?>. <?=$property->telepules?>, <?=$property->korzet?><?php if ($property->terkepesmegjelenes=='1') : ?>, <?=$property->utcanev?><?php endif; ?></span>
- <?php endif; ?>
- <a class="tool-icon" href="/profile/properties/delete/?id=<?=$property->id?>"><i class="fas fa-trash"></i> Eltávolítás</a>
- </div>
- <?php endforeach; ?>
- <div class="clear"></div>
- </div>
- </div>
- </div>
- <div class="clear"></div>
- </div>
- </section>
- <?php include 'footer.php' ?>
|