📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv9.demodesign.com.tr
/
themes
/
default
📝
page.php
← Geri Dön
<?php m_header(); $informations = $db->table('pages')->where('sef','=',m_u_g('sef'))->where('status','=',1)->get(); if($informations['total_count']=='0') { m_redirect(SITE_DOMAIN); } $info = $informations['data'][0]; ?> <section class="cover pt-5 pb-5" style="background: url('<?php echo SITE_THEME_URL; ?>/assets/img/hakkimizda-cover.png') center center no-repeat; background-size: cover;"> <div class="container-lg"> <h2> <?php echo $info['title']; ?></h2> </div> </section> <section class="page pt-5 pb-5"> <div class="container-lg"> <div class="row content"> <div class="col-lg-12 d-flex align-items-center"> <div class="g"> <?php echo $info['content']; ?> </div> </div> </div> </div> </section> <section class="whyus pt-5 pb-5"> <div class="container-lg"> <div class="title text-center">NEDEN <?php echo str_replace('https://','',SITE_DOMAIN); ?>?</div> <div class="row mt-5"> <?php $boxes_bottom = $db->table('boxes_bottom')->where('status','=',1)->order('b_rank','ASC')->get(); if($boxes_bottom['total_count'] != 0){ foreach($boxes_bottom['data'] as $boxes){ $title = $boxes['title']; $content = $boxes['content']; $color = $boxes['color']; $icon = $boxes['icon']; ?> <div class="col-xl-3 col-lg-3 col-md-6 col-sm-12 col-12"> <style> .subtitle-<?= $boxes['id']?>:before { content: ""; position: absolute; bottom: 0; width: 24px; height: 4px; border-radius: 2px; background-color: <?= $color?>; } </style> <div class="item orange" > <div class="subtitle subtitle-<?= $boxes['id']?>" style="color:<?= $color?>!important;" ><?= $title ?></div> <p><?= $content ?></p> </div> </div> <?php } } ?> </div> </div> </section> <?php m_footer(); ?>
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula