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/blue-sky.co.id/public_html/application/views/themes/1/hotel/ |
Upload File : |
<!-- BANNER --> <section class="" style="padding-top: 160px; padding-bottom: 40px; background: url('<?= base_url(); ?>themes/<?= $theme; ?>/bluesky/hotel/images/room-background.jpg') no-repeat; background-size: cover; background-position: center;"> <div class="container"> <div class="banner-content"> <h2></h2> <p></p> </div> </div> </section> <!-- END-BANNER --> <!-- ABOUT-US--> <section class="about about-v2" style="margin-bottom:0px;"> <div class="container"> <div class="row"> <div class="col-xs-12 col-sm-12 col-md-12 col-lg-10 col-lg-offset-1"> <div class="about-centent"> <h2 class="about-title text-center">Rooms & Suite</h2> </div> </div> </div> </div> </section> <!-- END/ ABOUT-US--> <!-- BODY-ROOM-1 --> <section class="body-room-1 "> <div class="container"> <div class="room-wrap-1"> <div class="row"> <?php if ($quer_rooms->num_rows()>0): ?> <?php foreach ($quer_rooms->result() as $key): $quer_rooms_gallery = $this->db->get_where("hotel_rooms_gallery",array( "is_active"=>'yes', "room_id"=>$key->id, )); ?> <!-- ITEM --> <div class="col-xs-12 col-sm-6 col-md-6 col-lg-6"> <div class="room-item-1"> <h2><a href="<?= base_url(); ?>hotel/<?= $this_hotel; ?>/room/<?= $key->id; ?>"><?= ucwords($key->room_name); ?></a></h2> <div class="img"> <a href="<?= base_url(); ?>hotel/<?= $this_hotel; ?>/room/<?= $key->id; ?>"> <?php if ($quer_rooms_gallery->num_rows()>0): $quer_rooms_gallery = $quer_rooms_gallery->row(); ?> <img style="width: 570px; height: 325px;" src="<?= base_url(); ?>uploads/hotel_rooms/<?= $quer_rooms_gallery->image; ?>" alt="#"> <?php else: ?> <img style="width: 570px; height: 325px;" src="<?= base_url(); ?>uploads/no_img.png" alt="#"> <?php endif; ?> </a> </div> <div class="content"> <?= $key->introduction; ?> </div> <div class="bottom"> <!-- <span class="price">Starting <span class="amout">Rp 800.000</span> /days</span> --> <a href="<?= base_url(); ?>hotel/<?= $this_hotel; ?>/room/<?= $key->id; ?>" class="btn">VIEW DETAILS</a> </div> </div> </div> <!-- END / ITEM --> <?php endforeach; ?> <?php endif; ?> </div> </div> </div> </section> <!-- END/BODY-ROOM-1-->