📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
supermarketscripti.demodesign.com.tr
/
application
/
views
📝
index.php
← Geri Dön
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?> <div class="section-slider"> <?php if (!empty($slider_items) && $this->general_settings->slider_status == 1): $this->load->view("partials/_main_slider"); endif; ?> </div> <!-- Wrapper --> <div id="wrapper" class="index-wrapper"> <div class="container"> <div class="row"> <div class="col-12"> <div class="row-custom row-bn"> <!--Include banner--> <?php $this->load->view("partials/_ad_spaces", ["ad_space" => "index_1", "class" => ""]); ?> </div> </div> <h1 class="index-title"><?php echo html_escape($this->settings->site_title); ?></h1> <?php if (item_count($featured_categories) > 0 && $this->general_settings->index_categories == 1): ?> <div class="col-12 section section-categories"> <!-- featured categories --> <?php $this->load->view("partials/_featured_categories"); ?> </div> <?php endif; ?> <?php if ($this->general_settings->index_promoted_products == 1 && $this->general_settings->promoted_products == 1 && !empty($promoted_products)): ?> <div class="col-12 section section-promoted"> <!-- promoted products --> <?php $this->load->view("product/_promoted_products"); ?> </div> <?php endif; ?> <?php if ($this->general_settings->index_latest_products == 1 && !empty($latest_products)): ?> <div class="col-12 section section-latest-products"> <h3 class="title"><?php echo trans("new_arrivals"); ?></h3> <p class="title-exp"><?php echo trans("latest_products_exp"); ?></p> <div class="row row-product"> <!--print products--> <?php foreach ($latest_products as $product): ?> <div class="col-6 col-sm-6 col-md-4 col-lg-2 col-product"> <?php $this->load->view('product/_product_item', ['product' => $product, 'promoted_badge' => false]); ?> </div> <?php endforeach; ?> </div> <div class="row-custom text-center"> <a href="<?php echo generate_url("products"); ?>" class="link-see-more"><span><?php echo trans("see_more"); ?> </span><i class="icon-arrow-right"></i></a> </div> </div> <?php endif; ?> <div class="col-12"> <div class="row-custom row-bn"> <!--Include banner--> <?php $this->load->view("partials/_ad_spaces", ["ad_space" => "index_2", "class" => ""]); ?> </div> </div> <?php if ($this->general_settings->index_blog_slider == 1 && !empty($blog_slider_posts)): ?> <div class="col-12 section section-blog m-0"> <h3 class="title"><?php echo trans("latest_blog_posts"); ?></h3> <p class="title-exp"><?php echo trans("latest_blog_posts_exp"); ?></p> <div class="row-custom"> <!-- main slider --> <?php $this->load->view("blog/_blog_slider", ['blog_slider_posts' => $blog_slider_posts]); ?> </div> </div> <?php endif; ?> </div> </div> </div> <!-- Wrapper End-->
💾 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