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/iatax.com.au/public_html/application/views/ |
Upload File : |
<div class="page-title"> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="page-title-heading"> <h1 class="h1-title"><?= $service->name; ?></h1> </div> <ul class="breadcrumbs"> <li> <a href="<?= base_url(); ?>" title="">Home<i class="fa fa-angle-right" aria-hidden="true"></i></a> </li> <li> <a href="<?= base_url('services'); ?>" title="" >Services<i class="fa fa-angle-right" aria-hidden="true"></i></a> </li> <li> <a href="#" title=""><?= $service->name; ?></a> </li> </ul> <div class="clearfix"></div> </div> </div> </div> </div> <section class="flat-row pd-services-widget"> <div class="container"> <div class="row" data-effect="fadeIn"> <div class="col-md-3"> <div class="sidebar left"> <aside class="widget widget_nav_menu"> <div class="menu-services-container"> <ul class="menu menu-tab"> <?php foreach($services as $item) : ?> <li <?php if($this->uri->segment('2') == $item->slug) : ?> class="active" <?php endif; ?> > <a href="<?= base_url() . 'services/' . $item->slug; ?>"><?= $item->name; ?></a> </li> <?php endforeach; ?> </ul> </div> </aside> </div> </div> <div class="col-md-9" id="serviceContent"> <div class="row"> <div class=" <?php if(empty($service->image1)) : ?> col-md-12 <?php else : ?> col-md-8 <?php endif; ?> "> <div class="title-section s1 pd-title-section" style="padding-top:0px"> <h2 style="padding-top:0"><?= $service->title1; ?></h2> </div> <?= $service->description1; ?> </div> <?php if(!empty($service->image1)) : ?> <div class="col-md-4"> <img src="<?= base_url() . 'uploads/service/' . $service->image1; ?>" /> </div> <?php endif; ?> </div> <?php if(!empty($service->title2) && !empty($service->description2)) : ?> <div class="row" style="padding-top:40px"> <?php if(!empty($service->image2)) : ?> <div class="col-md-4"> <img src="<?= base_url() . 'uploads/service/' . $service->image2; ?>" /> </div> <?php endif; ?> <div class=" <?php if(empty($service->image2)) : ?> col-md-12 <?php else : ?> col-md-8 <?php endif; ?> "> <div id="secondSectionServices" class="title-section s1 pd-title-section" style="padding-top:0px"> <h2 style="padding-top:0"><?= $service->title2; ?></h2> </div> <?= $service->description2; ?> </div> </div> <?php endif; ?> <?php if(!empty($service->title3) && !empty($service->description3)) : ?> <div class="row" style="padding-top:40px"> <div class=" <?php if(empty($service->image3)) : ?> col-md-12 <?php else : ?> col-md-8 <?php endif; ?> "> <div class="title-section s1 pd-title-section" style="padding-top:0"> <h2 style="padding-top:0"><?= $service->title3; ?></h2> </div> <?= $service->description3; ?> </div> <?php if(!empty($service->image3)) : ?> <div class="col-md-4"> <img src="<?= base_url() . 'uploads/service/' . $service->image3; ?>" /> </div> <?php endif; ?> </div> <?php endif; ?> <?php if(!empty($service->title4) && !empty($service->description4)) : ?> <div class="row" style="padding-top:40px"> <?php if(!empty($service->image4)) : ?> <div class="col-md-4"> <img src="<?= base_url() . 'uploads/service/' . $service->image4; ?>" /> </div> <?php endif; ?> <div class=" <?php if(empty($service->image4)) : ?> col-md-12 <?php else : ?> col-md-8 <?php endif; ?> "> <div class="title-section s1 pd-title-section" style="padding-top:0"> <h2 style="padding-top:0"><?= $service->title4; ?></h2> </div> <?= $service->description4; ?> </div> </div> <?php endif; ?> </div> </div> </div> </section>