📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv4.demodesign.com.tr
📝
blog.php
← Geri Dön
<?php require_once 'ayar/Config.php'; ?> <!DOCTYPE html> <html lang="tr"> <head> <meta charset="utf-8"> <!--===== Meta =====--> <?php if ($Site->site_ayarlari('blog-title') != ''){ // Meta Title ?> <title> <?php echo $Site->site_ayarlari('blog-title'); ?> </title> <?php } else { ?> <title>Blog</title> <?php } ?> <?php if ($Site->site_ayarlari('blog-keywords') != ''){ // Meta Keywords ?> <meta name="keywords" content="<?php echo $Site->site_ayarlari('blog-keywords'); ?>"> <?php } else { ?> <?php } ?> <?php if ($Site->site_ayarlari('blog-description') != ''){ // Meta Description ?> <meta name="description" content="<?php echo $Site->site_ayarlari('blog-description'); ?>"> <?php } else { ?> <?php } ?> <!--===== Header =====--> <?php include('header.php'); ?> <!--===== Body =====--> <section class="beautypress-inner-welocme-section beautypress-bg parallax-bg" data-parallax="scroll" style="background-color:#<?php echo $Site->site_ayarlari('tema_renk2'); ?>;"> <div class="beautypress-black-overlay"></div> <div class="container"> <div class="beautypress-inner-welcome-content"> <h1 class="color-white"><i class="fa fa-newspaper-o" aria-hidden="true"></i> BLOG</h1> </div> <div class="beautypress-inner-welcome-footer-content"> <ul class="beautypress-breadcrumb"> <li><a href="./">ANA SAYFA</a></li> <li><a href="blog">BLOG YAZILARI</a></li> </ul> </div> </div> </section> <!-- Blog --> <div class="col-md-12 col-xl-12"> <div class="beautypress-accordion beautypress-version-1"><br> <section class="beautypress-newsfeed-section"> <div class="container"> <div class="beautypress-section-headinig"> <br> <h2>Bizden Haberler</h2><br> </div> <div class="row"> <?php $blog = $Site->blog_listele2(); foreach ($blog as $key => $value){ if($value["aktifkontrol"]=="aktif"|| $Site->adminyetki(session("id"),'yetki')==0|| $Site->adminyetki(session("id"),'yetki')==1){ $blog_resim = explode(",",$value['anasayfa_resim']); ?> <!-- Blog --> <div class="col-md-12 col-sm-12 col-xl-4 col-lg-4"> <div class="beautypress-single-newsletter"> <div class="beautypress-newsfeed-header beautypress-light-overlay"> <img src="upload/<?php echo $value['anasayfa_resim']; ?>" alt="<?php echo $value['blog_baslik']; ?>"> </div> <div class="beautypress-newsfeed-footer"> <div class="hidden-xs tarih"><i class="fa fa-calendar-o"></i> <?php echo $value['blog_tarih']; ?> <i class="fa fa-bullhorn"></i> <?php echo $value['blog_okunma']; ?> okunma.</div> <br> <a href="blog/<?php echo $value['blog_seflink'] ?>"> <?php echo $value['blog_baslik']; ?> </a> <p> <?php echo strip_tags(substr($value['blog_text'],0,150)); ?>....</p> </div> </div> </div> <!-- Blog --> <?php }} ?> </div> </div> </section> </div> </div><br> <?php include('footer.php'); ?>
💾 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