Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /var/www/ptbos.biz/public_html/application/views/ |
Upload File : |
<!-- Banner --> <div class="product_banner" style="background-image:url(<?= base_url('uploads/category/'.$page->landingpage_image);?>);"> <div class="wrapp"> <div class="wrapp_in"> <div class="wrapp_in2"> <h3><?= $page->landingpage_title;?></h3> </div> </div> </div> </div><!-- End Banner --> <div class="wrapp"> <div class="content_innner"> <?php if($categories != null): ?> <?php $a=1; foreach ($categories as $category):?> <!-- Col Image left --> <?php if($a%2 == 0): ?> <div class="product_lp lp_col_right"> <?php else: ?> <div class="product_lp lp_col_left"> <?php endif; ?> <div class="row"> <?php if($a%2 != 0): ?> <div class="col-md-6"> <?php if($category->thumbnail != null): ?> <img src="<?= base_url('uploads/category/'.$category->thumbnail);?>"> <?php else: ?> <img src="<?= base_url('uploads/category/category-image-no-image.jpg');?>"> <?php endif; ?> </div> <?php endif; ?> <div class="col-md-6" product_lpdescwrapp> <div class="product_lpdesc"> <div class="tabel_view"> <div class="tabel_cell"> <h3><?= $category->category; ?></h3> <?= $category->description;?> <a href="<?= base_url('category/'.$category->alias)?>">See More</a> </div> </div> </div> </div> <?php if($a%2 == 0): ?> <div class="col-md-6"> <?php if($category->thumbnail != null): ?> <img src="<?= base_url('uploads/category/'.$category->thumbnail);?>"> <?php else: ?> <img src="<?= base_url('uploads/category/category-image-no-image.jpg');?>"> <?php endif; ?> </div> <?php endif; ?> </div> </div> <!-- End Col Image left --> <?php $a++; endforeach; ?> <?php else: ?> <div style="text-align: center;margin: 120px 0px;"> <h5>The Categories Will be Added Coming Soon</h5> </div> <?php endif; ?> </div> </div>