HOME


Mini Shell 1.0
DIR: /home/islapiiu/sites/forbes/contact-form/img/
Upload File :
Current File : /home/islapiiu/sites/forbes/contact-form/img/test.php.tar
home/islapiiu/sites/forbes/test.php000064400000025340150755436740013436 0ustar00<?php
include_once(dirname(__FILE__) . '/../class/include.php');
include_once(dirname(__FILE__) . '/auth.php');
$id = '';
if (isset($_GET['id'])) {
    $id = $_GET['id'];
}
$PRODUCT_TYPE = new ProductType($id);
?>
<!DOCTYPE html>


<html>
    <head>
        <meta charset="UTF-8">
        <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
        <title>products</title>
        <!-- Favicon-->
        <link rel="icon" href="favicon.ico" type="image/x-icon">
        <link href="https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">
        <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css">
        <link href="plugins/bootstrap/css/bootstrap.css" rel="stylesheet">
        <link href="plugins/node-waves/waves.css" rel="stylesheet" />
        <link href="plugins/animate-css/animate.css" rel="stylesheet" />
        <link href="plugins/sweetalert/sweetalert.css" rel="stylesheet" />
        <link href="css/style.css" rel="stylesheet">
        <link href="css/themes/all-themes.css" rel="stylesheet" />
    </head>

    <body class="theme-red">
        <?php
        include './navigation-and-header.php';
        ?>

        <section class="content">
            <div class="container-fluid"> 
                <?php
                $vali = new Validator();

                $vali->show_message();
                ?>
                <!-- Vertical Layout -->
                <div class="row clearfix">
                    <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
                        <div class="card">
                            <div class="header">
                                <h2>Create Products</h2>
                                <ul class="header-dropdown">
                                    <li class="">
                                        <a href="manage-product-type.php">
                                            <i class="material-icons">list</i>
                                        </a>
                                    </li>
                                </ul>
                            </div>
                            <div class="body">
                                <form class="form-horizontal"  method="post" action="post-and-get/product.php" enctype="multipart/form-data">
                                    <div class="col-md-12">                                      
                                        <div class="form-group form-float">
                                            <div class="form-line">
                                                <input type="text" id="name" class="form-control"  autocomplete="off" name="name" required="true">
                                                <label class="form-label">Name</label>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="col-md-12">
                                        <div class="form-group form-float">
                                            <div class="form-line">
                                                <input type="file" id="image" class="form-control" name="image" required="true">
                                            </div>
                                        </div>
                                    </div>
                                    <div class="col-md-12">                                      
                                        <div class="form-group form-float">
                                            <div class="form-line">
                                                <input type="text" id="short_description" class="form-control"  autocomplete="off" name="price" required="true">
                                                <label class="form-label">Price</label>
                                            </div>
                                        </div>
                                    </div>



                                    <div class="col-md-12">                                      
                                        <div class="form-group form-float">
                                            <div class="form-line">
                                                <input type="text" id="short_description" class="form-control"  autocomplete="off" name="quantity" required="true">
                                                <label class="form-label">Quantity</label>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="col-md-12">                                      
                                        <div class="form-group form-float">
                                            <div class="form-line">
                                                <input type="text" id="short_description" class="form-control"  autocomplete="off" name="short_description" required="true">
                                                <label class="form-label">Short Description</label>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="col-md-12">                                      
                                        <div class="form-group form-float">
                                            <label class="form-label">Description</label>
                                            <div class="form-line">
                                                <textarea id="description" name="description" class="form-control" rows="5"></textarea>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="col-md-12">
                                        <input type="hidden" id="id" value="<?php echo $PRODUCT_TYPE->id; ?>" name="id"/>
                                        <input type="submit" name="create" class="btn btn-primary TYPEm-t-15 waves-effect" value="create"/>
                                    </div>
                                </form>
                                <div class="row">
                                </div>
                                <hr/>

                                <div class="row clearfix">
                                    <?php
                                    $PRODUCT = Product::getProductsById($id);
                                    if (count($PRODUCT) > 0) {
                                        foreach ($PRODUCT as $key => $product) {
                                            ?>
                                            <div class="col-md-3"  id="div<?php echo $product['id']; ?>">
                                                <div class="photo-img-container">
                                                    <img src="../upload/product-type/product/<?php echo $product['image_name']; ?>" class="img-responsive ">
                                                </div>
                                                <div class="img-caption">
                                                    <p class="maxlinetitle"><?php echo $product['name']; ?></p>
                                                    <div class="d">
                                                        <a href="#" class="delete-product" data-id="<?php echo $product['id']; ?>"> <button class="glyphicon glyphicon-trash delete-btn"></button></a>
                                                        <a href="edit-product.php?id=<?php echo $product['id']; ?>"> <button class="glyphicon glyphicon-pencil edit-btn"></button></a>
                                                        <a href="arrange-products.php?id=<?php echo $id; ?>">  <button class="glyphicon glyphicon-random arrange-btn"></button></a>
                                                    </div>
                                                </div>
                                            </div>
                                            <?php
                                        }
                                    } else {
                                        ?>
                                        <b style="padding-left: 15px;">No Products in the database.</b>
                                    <?php } ?>

                                </div>
                            </div>
                        </div>
                    </div>
                </div>


                <!-- #END# Vertical Layout -->

            </div>
        </section>

        <!-- Jquery Core Js -->
        <script src="plugins/jquery/jquery.min.js"></script>
        <script src="plugins/bootstrap/js/bootstrap.js"></script>
        <script src="plugins/jquery-slimscroll/jquery.slimscroll.js"></script>
        <script src="plugins/node-waves/waves.js"></script>
        <script src="js/admin.js"></script>
        <script src="js/demo.js"></script>
        <script src="js/add-new-ad.js" type="text/javascript"></script>

        <script src="plugins/sweetalert/sweetalert.min.js"></script>
        <script src="plugins/bootstrap-notify/bootstrap-notify.js"></script>
        <script src="js/pages/ui/dialogs.js"></script>

        <script src="delete/js/service-photo.js" type="text/javascript"></script>
        <script src="tinymce/js/tinymce/tinymce.min.js"></script>
        <script src="delete/js/product.js" type="text/javascript"></script>
        <script>
            tinymce.init({
                selector: "#description",
                // ===========================================
                // INCLUDE THE PLUGIN
                // ===========================================

                plugins: [
                    "advlist autolink lists link image charmap print preview anchor",
                    "searchreplace visualblocks code fullscreen",
                    "insertdatetime media table contextmenu paste"
                ],
                // ===========================================
                // PUT PLUGIN'S BUTTON on the toolbar
                // ===========================================

                toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image jbimages",
                // ===========================================
                // SET RELATIVE_URLS to FALSE (This is required for images to display properly)
                // ===========================================

                relative_urls: false

            });


        </script>
    </body>

</html>home/islapiiu/sites/holidaytours/test.php000064400000024716150765445560014713 0ustar00<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

    <head>

        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

        <title>Promotional email template</title>

    </head>



    <body >

        <table width="100%" border="0" cellspacing="0" cellpadding="0" >

            <tr>

                <td><table width="600" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF" align="center">

                        <tr>

                            <td><table width="100%" border="0" cellspacing="0" cellpadding="0">

                                    <tr>

                                        <td width="40"></td>

                                        <td width="144">

                                            <a href= "' . $site_link . '" target="_blank"> '
        . '<img src="http://localhost/Hikkaduwa-holiday-tours/contact-form/img/logo-1.png" border="0" alt=""/>

                                            </a>

                                        </td>

                                        <td width="393">

                                            <table width="100%" border="0" cellspacing="0" cellpadding="0">

                                                <tr>

                                                    <td height="46" align="right" valign="middle">

                                                        <table width="100%" border="0" cellspacing="0" cellpadding="0">

                                                            <tr>

                                                                <td width="67%" align="right">

                                                                    <font style="font-family: Verdana, Geneva, sans-serif; color:#68696a; font-size:18px; " >

                                                                        <a href= "' . $site_link . '" style="color:#68696a; text-decoration:none; text-transform: uppercase;">

                                                                            <h4>' . $website_name . '</h4>

                                                                        </a>

                                                                    </font>

                                                                </td>

                                                                <td width="4%">&nbsp;</td>

                                                            </tr>
                                                            <tr>

                                                                <td height="30"><img src="http://localhost/Hikkaduwa-holiday-tours/contact-form/img/PROMO-GREEN2_01_04.jpg" width="393" height="30" border="0" alt=""/></td>

                                                            </tr>
                                                        </table>

                                                    </td>

                                                </tr>



                                            </table>

                                        </td>

                                    </tr>

                                </table></td>

                        </tr>




                        <tr>

                            <td>&nbsp;</td>

                        </tr>

                        <tr>

                            <td>

                                <table width="100%" border="0" cellspacing="0" cellpadding="0">

                                    <tr>

                                        <td width="5%">&nbsp;</td>

                                        <td width="90%" valign="middle">

                                            <font style="font-family: Verdana, Geneva, sans-serif; color:#68696a; font-size:14px; ">

                                                Dear ' . $visitor_name . ',

                                                <br /><br />

                                            </font>

                                        </td>

                                        <td width="5%">&nbsp;</td>

                                    </tr>

                                    <tr>

                                        <td width="5%">&nbsp;</td>

                                        <td width="100%" valign="middle">

                                            <font style="font-family: Verdana, Geneva, sans-serif; color:#68696a; font-size:14px; " >

                                                Thank you for your inquiry ,one of our travel experts will get in touch with you soon.
                                                <br /><br />
                                            </font>

                                        </td>

                                        <td width="5%">&nbsp;</td>

                                    </tr>

                                    <tr>

                                        <td width="5%">&nbsp;<br /><br /></td>

                                        <td width="90%" valign="middle">

                                            <font style="font-family: Verdana, Geneva, sans-serif; color:#68696a; font-size:14px; " >
                                                Thank you,
                                            </font>
                                            <br/>
                                            <font style="font-family: Verdana, Geneva, sans-serif;text-transform:uppercase; color:#68696a; font-size:14px; " >
                                             DREAM ROUND TOUR

                                            </font>

                                        </td>

                                    </tr>

                                </table>



                                <table width="100%" border="0" cellspacing="0" cellpadding="0">

                                    <tr>



                                        <td width="5%">&nbsp;</td>

                                    </tr>



                                </table>

                            </td>

                        </tr>

                        <tr>

                            <td>&nbsp;</td>

                        </tr>



                        <tr>

                            <td>&nbsp;</td>

                        </tr>

                        <tr>

                            <td><img src="' . $site_link . '/contact-form/img/PROMO-GREEN2_07.jpg" width="598" height="7" style="display:block" border="0" alt=""/></td>

                        </tr>

                        <tr>

                            <td>&nbsp;</td>

                        </tr>

                        <tr>

                            <td>

                                <table width="100%" border="0" cellspacing="0" cellpadding="0">

                                    <tr>

                                        <td width="2%" align="center">&nbsp;</td>

                                        <td width="29%" align="center">

                                            <font style="font-family: Verdana, Geneva, sans-serif; color:#68696a; font-size:8px; " >

                                                <strong>Phone No : <br/> ' . $comConNumber . ' </strong>

                                            </font>

                                        </td>

                                        <td width="2%" align="center">

                                            <font style="font-family: Verdana, Geneva, sans-serif; color:#68696a; font-size:8px; " >

                                                <strong>|</strong>

                                            </font>

                                        </td>

                                        <td width="30%" align="center">

                                            <font style="font-family: Verdana, Geneva, sans-serif; color:#68696a; font-size:8px; " >

                                                <strong>Website : <br/> ' . $website_name . '  </strong>

                                            </font>

                                        </td>

                                        <td width="2%" align="center">

                                            <font style="font-family: Verdana, Geneva, sans-serif; color:#68696a; font-size:8px; " >

                                                <strong>|</strong>

                                            </font>

                                        </td>

                                        <td width="25%" align="center">

                                            <font style="font-family: Verdana, Geneva, sans-serif; color:#68696a; font-size:8px; " >

                                                <strong>E-mail :  <br/> ' . $comEmail . '</strong>

                                            </font>

                                        </td> 

                                    </tr>

                                </table>

                                <table width="100%" border="0" cellspacing="1" cellpadding="1">

                                    <tr>

                                        <td>&nbsp;</td>

                                    </tr>

                                    <tr>

                                        <td width="3%" align="center">&nbsp;</td>

                                        <td width="28%" align="center"><font style="font-family: Verdana, Geneva, sans-serif; color:#1400FF; font-size:9px; " > © ' . date('Y') . ' Copyright ' . $comany_name . '</font> </td>

                                        <td width="10%" align="center"></td>

                                        <td width="3%" align="center"></td> 

                                        <td width="30%" align="right">

                                            <font style="font-family: Verdana, Geneva, sans-serif; color:#1400FF; font-size:9px; " > 

                                                <a href="http://sublime.lk/">

                                                    web solution by: Synotec Holdings (pvt) Ltd</a>

                                            </font>

                                        </td>

                                        <td width="5%">&nbsp;</td>

                                    </tr>

                                </table>

                            </td>

                        </tr>

                    </table></td>

            </tr>

        </table>

    </body>

</html>home/islapiiu/sites/toursatsrilanka/test.php000064400000005216150766036650015402 0ustar00<?php 
?>

<!--<link rel="stylesheet" type="text/css" href="css-1/fullwidth.css" media="screen" />
<link rel="stylesheet" type="text/css" href="rs-plugin/css/settings.css" media="screen" />
<link rel="stylesheet" href="css-1/rev-settings.css" type="text/css">-->

<link href="css/slider.css" rel="stylesheet" type="text/css"/>
<!-- revolution slider -->
<section class="no-top no-bottom" aria-label="section-slider">
    <div class="fullwidthbanner-container">
        <div id="revolution-slider-half"  class="owlCarousel" >
            <ul>

                <li  data-transition="parallaxtobottom" data-slotamount="10" data-masterspeed="1200" data-delay="5000">
                    <!--  BACKGROUND IMAGE -->
                    <!--<img src="images/banner/-29533959_191173606947_1544489383_n.jpg" alt="" />-->
                    <img src="images/banner/-628599611_190574541295_1543385620_n.jpg" alt="" data-start="0" data-bgposition="center center" data-kenburns="on" data-duration="10000" data-ease="Linear.easeNone" data-bgfit="120" data-bgfitend="100" data-bgpositionend="center center"/>
                    <img src="images/banner/-211414080_190991726826_1543398309_n.jpg" alt="" data-start="0" data-bgposition="center center" data-kenburns="on" data-duration="10000" data-ease="Linear.easeNone" data-bgfit="120" data-bgfitend="100" data-bgpositionend="center center"/>
                    <img src="images/banner/-617693116_190585447790_1543400368_n.jpg" alt=""/>
                    <!--<img src="images/banner/-462665276_190740475630_1544518168_n.jpg" alt=""/>-->
                    <div class="tp-caption slide-big-heading sft hidden-xs hidden-sm"
                         data-x="-115"
                         data-y="455"
                         data-speed="800"
                         data-start="400"
                         data-easing="easeInOutExpo"
                         data-endspeed="450">

                    </div>

<!--                    <div class="tp-caption slide-sub-heading sft hidden-xs hidden-sm"
                         data-x="-115"
                         data-y="520"
                         data-speed="1000"
                         data-start="800"
                         data-easing="easeOutExpo"
                         data-endspeed="400">

                    </div>-->

                </li>
            </ul>
            <div class="tp-bannertimer hide"></div>
        </div>
    </div>
</section>


<!-- revolution slider end -->

<!--<script src="rs-plugin/js/jquery.themepunch.tools.min.js"></script>
<script src="rs-plugin/js/jquery.themepunch.revolution.min.js"></script>-->

<script src="js/slider.js" type="text/javascript"></script>home/islapiiu/sites/faithlinkint/test.php000064400000017120150766070130014624 0ustar00<!DOCTYPE html>
<?php
include './class/include.php';
$id = '';
$id = $_GET['id'];
$PRODUCT_PHOTO = new ProductPhoto($id);
$PRODUCT = new Product($id);
$PRODUCTS = $PRODUCT->getProductsById($id);
?>
<html lang="en">

    <head>
        <meta charset="UTF-8">
        <title>Faithlink International (Pvt) Ltd - Product</title>
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta content="width=device-width, initial-scale=1" name="viewport" />
        <meta content="" name="description" />
        <meta content="" name="author" />
        <!-- BEGIN GLOBAL MANDATORY STYLES -->
        <link href="plugins/normalize.css" rel="stylesheet" type="text/css">
        <link href="plugins/uikit-2.27.2/css/uikit.min.css" rel="stylesheet" type="text/css">
        <link href="plugins/font-awesome-4.7/css/font-awesome.min.css" rel="stylesheet" type="text/css">
        <link href="plugins/slick-master/slick/slick.css" rel="stylesheet" type="text/css">
        <link href="plugins/flat-icon/flaticon.css" rel="stylesheet" type="text/css">
        <!-- END GLOBAL MANDATORY STYLES -->
        <!-- BEGIN PAGE COMPONENTS UIKIT -->
        <link href="plugins/uikit-2.27.2/css/components/sticky.min.css" rel="stylesheet" type="text/css">
        <link href="plugins/uikit-2.27.2/css/components/slider.min.css" rel="stylesheet" type="text/css">
        <!-- END PAGE COMPONENTS UIKIT -->
        <!-- BEGIN REVOLUTION SLIDER -->
        <link rel="stylesheet" href="plugins/revolution/css/settings.css">
        <link rel="stylesheet" href="plugins/revolution/css/layers.css">
        <link rel="stylesheet" href="plugins/revolution/css/navigation.css">
        <!-- END REVOLUTION SLIDER -->
        <!-- BEGIN TEMPLATE LAYOUT STYLES -->
        <link rel="stylesheet" href="css/style.css">
        <link rel="stylesheet" href="css/responsive.css">
        <!-- END TEMPLATE LAYOUT STYLES -->
        <link rel="shortcut icon" href="images/icon.png" />
    </head>
    <body>
        <!-- BEGIN HEADER -->
        <?php include './header.php'; ?>
        <!-- END HEADER -->
        <!-- BEGIN CONTAINER -->
        <!-- BEGIN SLIDER -->
        <section class="brick-banner">
            <div class="uk-container uk-container-center">
                <div class="title">
                    <h3>PRODUCT</h3>
                    <ul>
                        <li><a href="index.php">Home</a></li>
                        <li class="active"><a href="product.php">Product</a></li>
                    </ul>
                </div>
            </div>
        </section>
        <section class="product-detail set-padding">
            <div class="uk-container uk-container-center" style="margin-top: 50px; margin-bottom: 50px;">
                <div class="uk-grid">
                    <div class="uk-width-medium-3-4 uk-width-small-1-1 uk-width-1-1">
                        <div class="box-detail uk-clearfix">
                            <div class="box-product-detail uk-clearfix">
                                <ul class=" slick-big-images">
                                    <?php
                                    foreach ($PRODUCT_PHOTO->getProductPhotosById($id) as $key => $product_photo) {
                                        ?>
                                        <li>
                                            <div class="box-img">
                                                <img src="upload/product-type/product/gallery/<?php echo $product_photo['image_name']; ?>" alt="">
                                            </div>
                                        </li>
                                        <?php
                                    }
                                    ?>
                                </ul>
                                <ul class="slick-thumbnail-images">
                                    <?php
                                    foreach ($PRODUCT_PHOTO->getProductPhotosById($id) as $key => $product_photo) {
                                        ?>
                                        <li>
                                            <div class="box-thumbanil">
                                                <img src="upload/product-type/product/gallery/thumb/<?php echo $product_photo['image_name'] ?>" alt="">
                                            </div>
                                        </li>
                                        <?php
                                    }
                                    ?>
                                </ul>
                            </div>
                            <div class="box-detail-content">
                                <h3><?php echo $PRODUCT->name; ?></h3>

                                <p><?php echo $PRODUCT->description; ?></p>

                                <div class="brick-button brick-button-yellow brick-button-radius">
                                    <a href="<?php echo $PRODUCT->url; ?>" target="_blank"><h3>Read More</h3></a>
                                </div>
                            </div>
                        </div>
                    </div>
                     
                </div>
            </div>
        </section>

        <!-- END SLIDER -->
        <!-- BEGIN FOOTER -->
        <?php include './footer.php'; ?>
        <!-- END FOOTER -->
        <div class="brick-backtotop brick-background-yellow" data-uk-smooth-scroll><span class="fa fa-arrow-up"></span></div>
        <!-- BEGIN JQUERY JS -->
        <script src="plugins/jquery/jquery-1.12.4.min.js"></script>
        <script src="plugins/uikit-2.27.2/js/uikit.min.js" type="text/javascript"></script>
        <script src="plugins/slick-master/slick/slick.min.js" type="text/javascript"></script>
        <script src="plugins/jquery-waypoints/2.0.3/waypoints.min.js" type="text/javascript"></script>
        <script src="plugins/jquery-count-to-number/jquery.counterup.min.js" type="text/javascript"></script>
        <!-- END JQUERY JS -->
        <!-- BEGIN COMPONENT UIKIT-->
        <script src="plugins/uikit-2.27.2/js/components/sticky.min.js" type="text/javascript"></script>
        <script src="plugins/uikit-2.27.2/js/components/slider.min.js" type="text/javascript"></script>
        <!-- END COMPONENT UIKIT-->
        <!-- BEGIN REVOLUTION SLIDER -->
        <script src="plugins/revolution/js/jquery.themepunch.tools.min.js"></script>
        <script src="plugins/revolution/js/jquery.themepunch.revolution.min.js"></script>
        <script src="plugins/revolution/js/extensions/revolution.extension.actions.min.js"></script>
        <script src="plugins/revolution/js/extensions/revolution.extension.carousel.min.js"></script>
        <script src="plugins/revolution/js/extensions/revolution.extension.kenburn.min.js"></script>
        <script src="plugins/revolution/js/extensions/revolution.extension.layeranimation.min.js"></script>
        <script src="plugins/revolution/js/extensions/revolution.extension.migration.min.js"></script>
        <script src="plugins/revolution/js/extensions/revolution.extension.navigation.min.js"></script>
        <script src="plugins/revolution/js/extensions/revolution.extension.parallax.min.js"></script>
        <script src="plugins/revolution/js/extensions/revolution.extension.slideanims.min.js"></script>
        <script src="plugins/revolution/js/extensions/revolution.extension.video.min.js"></script>
        <!-- END REVOLUTION SLIDER -->
        <!-- BEGIN MAIN JS -->
        <script src="js/main.js"></script>
        <!-- END MAIN JS  -->
    </body>


</html>
home/islapiiu/sites/agpholdings/test.php000064400000004161150766305730014447 0ustar00<div class="wickley_tm_section">
    <div class="wickley_tm_slider_wrap">

        <div class="wickley_tm_universal_swiper_wrap">
            <div class="swiper-container">
                <div class="wickley_tm_articles_wrap swiper-wrapper">
                    <div class="article_inner swiper-slide "> 

                        <div class="video-background">

                            <div class="main_bg">
                                <div class="overlay_video" >
                                    <div class="video-foreground">
                                        <iframe src="https://www.youtube.com/embed/GSiMF-ODCuM?controls=0&showinfo=0&rel=0&autoplay=1&loop=1&playlist=GSiMF-ODCuM" frameborder="0" allowfullscreen></iframe>
                                    </div>
                                </div>
                            </div>
                            <div class="main_content"></div>

                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
    <style>

        * { box-sizing: border-box; }
        .video-background {
            background: #000;

            position: relative;

            top: 0;

            right: 0;

            bottom: 0;

            left: 0;

            z-index: 99;
        }
        .video-foreground,
        .video-background iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }
        #vidtop-content {
            top: 0;
            color: #fff;
        }

        @media (min-aspect-ratio: 16/9) {
            .video-foreground { height: 300%; top: -100%; }
        }
        @media (max-aspect-ratio: 16/9) {
            .video-foreground { width: 300%; left: -100%; }
        }
        @media all and (max-width: 600px) {
            .vid-info { width: 50%; padding: .5rem; }
            .vid-info h1 { margin-bottom: .2rem; }
        }
        @media all and (max-width: 500px) {
            .vid-info .acronym { display: none; }
        }
    </style>home/islapiiu/sites/royalescapestours/test.php000064400000002500150767530370015733 0ustar00<!--<section class="hero-area1">
			<div class="single-hero-area hero-area1">
                <div class="container">
                    <div class="hero-area-content">
                        <h1>We provide Fast & safe <span>transport</span></h1>
                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                        <a href="#" class="theme-btn">learn more</a>
                    </div>
                </div>
			</div>
			<div class="single-hero-areas hero-area20">
                            
			</div>
			<div class="single-hero-area hero-area3">
                <div class="container">
                    <div class="hero-area-content">
                        <h1>We provide Fast & safe <span>transport</span></h1>
                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
                        <a href="#" class="theme-btn">learn more</a>
                    </div>
                </div>
			</div>
		</section>-->home/islapiiu/sites/travelwithsusa/test.php000064400000140666150767660210015246 0ustar00<!DOCTYPE html>
<html lang="en">

    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="keywords" content="" />
        <meta name="author" content="" />
        <meta name="robots" content="" />
        <meta name="description" content="Triper : Tour, Travel & Travel Agency Template" />
        <meta property="og:title" content="Triper : Tour, Travel & Travel Agency Template" />
        <meta property="og:description" content="Triper : Tour, Travel & Travel Agency Template" />
        <meta property="og:image" content="social-image.png" />
        <meta name="format-detection" content="telephone=no">

        <!-- FAVICONS ICON -->
        <link rel="icon" href="images/favicon.ico" type="image/x-icon" />
        <link rel="shortcut icon" type="image/x-icon" href="images/favicon.png" />

        <!-- PAGE TITLE HERE -->
        <title>Travel with Susa</title>

        <!-- MOBILE SPECIFIC -->
        <meta name="viewport" content="width=device-width, initial-scale=1"> 

        <!-- STYLESHEETS -->
        <link rel="stylesheet" type="text/css" href="css/plugins.css">
        <link rel="stylesheet" type="text/css" href="css/style.css">
        <link rel="stylesheet" type="text/css" href="css/templete.css">
        <link class="skin" rel="stylesheet" type="text/css" href="css/skin/skin-1.css">
        <link rel="stylesheet" href="plugins/datepicker/css/bootstrap-datetimepicker.min.css"/>
        <!-- Revolution Slider Css -->
        <link rel="stylesheet" type="text/css" href="plugins/revolution/revolution/css/layers.css">
        <link rel="stylesheet" type="text/css" href="plugins/revolution/revolution/css/settings.css">
        <link rel="stylesheet" type="text/css" href="plugins/revolution/revolution/css/navigation.css">
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
        <!--        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">-->
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!--        <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>-->
        <link href="css/testermonial.css" rel="stylesheet" type="text/css"/>

        <!-- Revolution Navigation Style -->
    </head>
    <body  > 
        <div class="page-wraper">
            <!-- header -->
            <header class="site-header mo-left header">
    <!-- top bar -->
    <div class="top-bar bg-dark">
        <div class="container">
            <div class="row d-flex justify-content-between"> 
                <div class="col-md-6 dlab-topbar-left">
                    <ul>
                        <li><i class="fa fa-envelope"></i> [email protected]</li>
                        <li><i class="fa fa-mobile"></i> (+94) 77 258 35689</li>

                    </ul>
                </div>
                <div class="col-md-6 dlab-topbar-right  ">
                    <!--                    <ul>
                                            <li><i class="fa fa-envelope"></i> [email protected]</li>
                                            <li><i class="fa fa-mobile"></i> (+94) 77 258 35689</li>
                                            
                                        </ul>-->
                </div>
            </div>
        </div>
    </div>
    <!-- top bar END-->
    <!-- main header -->
    <div class="sticky-header navbar-expand-lg">
        <div class="main-bar clearfix onepage">
            <div class="container clearfix">
                <!-- website logo -->
                <div class="logo-header mostion">
                    <a href="index.php"><img src="images/logo.png" alt=""></a>
                </div>
                
                
                <!-- Quik search -->
                <div class="dlab-quik-search bg-primary search-style-1">
                    <form action="#">
                        <input name="search" value="" type="text" class="form-control" placeholder="Type to search">
                        <span id="quik-search-remove"><i class="ti-close"></i></span>
                    </form>
                </div>
                <!-- main nav -->
                <div class="header-nav navbar-collapse collapse navbar myNavbar justify-content-end" id="navbarNavDropdown">
                    <ul class="nav navbar-nav">
                        <li class="active"><a href="index.html">Home</a></li>
                        <li><a href="#">About us  </a> </li> 
                        <li><a href="#">Excursions </a> </li> 
                        <li><a href="#">Tour Packages </a> </li> 
                        <li><a href="#">Feedback </a> </li> 
                        <li><a href="#">Gallery </a> </li> 
                        <li><a href="#"  >Contact Us</a></li>
                    </ul>	
                </div>
            </div>
        </div>
    </div>
    <!-- main header END -->
</header>            <!-- header END -->
            <!-- Content -->
            <div class="page-content">
                <!-- Main Slider -->
                <div class="rev-slider">
    <div id="rev_slider_265_1_wrapper" class="rev_slider_wrapper fullwidthbanner-container errow-style-1" data-alias="" data-source="gallery" style="margin:0px auto;background:transparent;padding:0px;margin-top:0px;margin-bottom:0px;">
        <!-- START REVOLUTION SLIDER 5.4.6.3 fullwidth mode -->
        <div id="rev_slider_265_1" class="rev_slider fullwidthabanner" style="display:none;" data-version="5.4.6.3">
            <ul>  <!-- SLIDE  -->
                <li data-index="rs-100" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default" data-easeout="default" data-masterspeed="300" data-thumb="images/main-slider/slide1.jpg" data-rotate="0" data-saveperformance="off" data-title="Slide" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
                    <!-- MAIN IMAGE -->
                    <img src="images/main-slider/slide1.jpg" alt="" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" class="rev-slidebg" data-no-retina>
                    <div class="tp-caption tp-shape tp-shapewrapper" 
                         id="slide-100-layer-1" 
                         data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']" 
                         data-y="['middle','middle','middle','middle']" data-voffset="['0','0','0','0']" 
                         data-width="full"
                         data-height="full"
                         data-whitespace="nowrap"
                         data-type="shape" 
                         data-basealign="slide" 
                         data-responsive_offset="on" 
                         data-responsive="off"
                         data-frames='[{"delay":0,"speed":1500,"frame":"0","from":"opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","ease":"nothing"}]'
                         data-textAlign="['left','left','left','left']"
                         data-paddingtop="[0,0,0,0]"
                         data-paddingright="[0,0,0,0]"
                         data-paddingbottom="[0,0,0,0]"
                         data-paddingleft="[0,0,0,0]"
                         style="z-index: 5;"> </div>
                    <!-- LAYER NR. 3 -->
                    <div class="tp-caption tp-resizeme d-md-block d-none text-white" 
                         id="slide-100-layer-2" 
                         data-x="380" 
                         data-y="210" 
                         data-width="['auto']"
                         data-height="['auto']"
                         data-type="text" 
                         data-responsive_offset="on" 
                         data-frames='[{"delay":"+500","split":"chars","splitdelay":0.05000000000000000277555756156289135105907917022705078125,"speed":2000,"split_direction":"forward","frame":"0","from":"opacity:0;","color":"#000000","to":"o:1;","ease":"Power4.easeInOut"},{"delay":"wait","speed":2000,"frame":"999","color":"transparent","to":"opacity:0;","ease":"Power3.easeInOut"}]'
                         data-textAlign="['left','left','left','left']"
                         data-paddingtop="[0,0,0,0]"
                         data-paddingright="[0,0,0,0]"
                         data-paddingbottom="[0,0,0,0]"
                         data-paddingleft="[0,0,0,0]"
                         style="z-index: 7; white-space: nowrap; font-size: 65px; line-height: 60px; font-weight: 800; letter-spacing: 0px; font-family:Signika;text-shadow: 3px 3px #020000;margin-top: 80px;">Wel come to Sri Lanka </div>
                    <div class="tp-caption tp-resizeme d-md-block d-none text-white" 
                         id="slide-100-layer-3" 
                         data-x="380" 
                         data-y="280" 
                         data-width="['auto']"
                         data-height="['auto']"
                         data-type="text" 
                         data-responsive_offset="on" 
                         data-frames='[{"delay":"+2000","split":"chars","splitdelay":0.05000000000000000277555756156289135105907917022705078125,"speed":2000,"split_direction":"forward","frame":"0","from":"opacity:0;","color":"#000000","to":"o:1;","ease":"Power4.easeInOut"},{"delay":"wait","speed":2000,"frame":"999","color":"transparent","to":"opacity:0;","ease":"Power3.easeInOut"}]'
                         data-textAlign="['left','left','left','left']"
                         data-paddingtop="[0,0,0,0]"
                         data-paddingright="[0,0,0,0]"
                         data-paddingbottom="[0,0,0,0]"
                         data-paddingleft="[0,0,0,0]"
                         style="z-index: 7; white-space: nowrap; font-size: 65px; line-height: 60px; font-weight: 800; letter-spacing: 0px; font-family:Signika;text-shadow: 3px 3px #020000;margin-top: 90px;"> Amazing And Adventures Waiting For You</div>


                </li>
                <li data-index="rs-200" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default" data-easeout="default" data-masterspeed="300" data-thumb="images/main-slider/slide2.jpg" data-rotate="0" data-saveperformance="off" data-title="Slide" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
                    <!-- MAIN IMAGE -->
                    <img src="images/main-slider/slide2.jpg" alt="" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" class="rev-slidebg" data-no-retina>
                    <div class="tp-caption tp-shape tp-shapewrapper" 
                         id="slide-200-layer-1" 
                         data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']" 
                         data-y="['middle','middle','middle','middle']" data-voffset="['0','0','0','0']" 
                         data-width="full"
                         data-height="full"
                         data-whitespace="nowrap"
                         data-type="shape" 
                         data-basealign="slide" 
                         data-responsive_offset="on" 
                         data-responsive="off"
                         data-frames='[{"delay":0,"speed":1500,"frame":"0","from":"opacity:0;","to":"o:1;","ease":"Power3.easeInOut"},{"delay":"wait","speed":300,"frame":"999","ease":"nothing"}]'
                         data-textAlign="['left','left','left','left']"
                         data-paddingtop="[0,0,0,0]"
                         data-paddingright="[0,0,0,0]"
                         data-paddingbottom="[0,0,0,0]"
                         data-paddingleft="[0,0,0,0]"
                         style="z-index: 5; "> </div>
                    <!-- LAYER NR. 3 -->
                    <div class="tp-caption tp-resizeme d-md-block d-none text-white" 
                         id="slide-200-layer-2" 
                         data-x="380" 
                         data-y="210" 
                         data-width="['auto']"
                         data-height="['auto']"
                         data-type="text" 
                         data-responsive_offset="on" 
                         data-frames='[{"delay":"+500","split":"chars","splitdelay":0.05000000000000000277555756156289135105907917022705078125,"speed":2000,"split_direction":"forward","frame":"0","from":"opacity:0;","color":"#000000","to":"o:1;","ease":"Power4.easeInOut"},{"delay":"wait","speed":2000,"frame":"999","color":"transparent","to":"opacity:0;","ease":"Power3.easeInOut"}]'
                         data-textAlign="['left','left','left','left']"
                         data-paddingtop="[0,0,0,0]"
                         data-paddingright="[0,0,0,0]"
                         data-paddingbottom="[0,0,0,0]"
                         data-paddingleft="[0,0,0,0]"
                         style="z-index: 7; white-space: nowrap; font-size: 65px; line-height: 60px; font-weight: 800; letter-spacing: 0px; font-family:Signika;text-shadow: 3px 3px #020000;margin-top: 80px;">Amazing Tours And Fun</div>
                    <div class="tp-caption tp-resizeme d-md-block d-none text-white" 
                         id="slide-200-layer-3" 
                         data-x="380" 
                         data-y="280" 
                         data-width="['auto']"
                         data-height="['auto']"
                         data-type="text" 
                         data-responsive_offset="on" 
                         data-frames='[{"delay":"+2000","split":"chars","splitdelay":0.05000000000000000277555756156289135105907917022705078125,"speed":2000,"split_direction":"forward","frame":"0","from":"opacity:0;","color":"#000000","to":"o:1;","ease":"Power4.easeInOut"},{"delay":"wait","speed":2000,"frame":"999","color":"transparent","to":"opacity:0;","ease":"Power3.easeInOut"}]'
                         data-textAlign="['left','left','left','left']"
                         data-paddingtop="[0,0,0,0]"
                         data-paddingright="[0,0,0,0]"
                         data-paddingbottom="[0,0,0,0]"
                         data-paddingleft="[0,0,0,0]"
                         style="z-index: 7; white-space: nowrap; font-size: 65px; line-height: 60px; font-weight: 800; letter-spacing: 0px; font-family:Signika;text-shadow: 3px 3px #020000;margin-top: 90px;"> Adventures Waiting For You</div>

                </li>
            </ul>
            <div class="tp-bannertimer tp-bottom" style="visibility: hidden !important;"></div> </div>
    </div>  
</div>                  <!-- Main Slider -->

                <!-- About Us -->                
                <div class="section-full bg-white content-inner dlab-about-1 promotions" id="about-us"> 
                    <div class="container">
                        <div class="row">
                            <div class="col-lg-7 col-md-7 col-sm-12"  style="margin-bottom: 50px;"> 
                                <div class="section-head d-flex text-black">
                                    <div class="flex-grow-1">
                                        <h2 class="text-uppercase m-b0 main-font">Welcome to Sri lanka</h2>
                                        <p class="m-b0">Best Tour Guide In Sri Lanka</p>
                                    </div> 
                                </div>
                                <p class="text-justify">The <strong>GRAND TOUR OF  EUROPE</strong><strong></strong> – the very words evoke images reminding us of what we perhaps  think of as being the golden days of the Romance of Travel.</p>
                                <p class="text-justify"> It was probably during the 17th  Century that the origins of the Grand Tour of Europe, as we now understand it  to have been, actually started. In due course, and as the travellers returned  with wonderful tales of what they had seen, a Grand Tour developed to become an  essential part of the education and learning process of the sons and daughters  of the wealthy and privileged of the day.</p>
                                <p class="text-justify"> Of course, travel then was something  completely different from anything that we can all enjoy today. Imagine a world  with only the horse as your method of transport on land. A time also when it  could sometimes take three days just to cross the Channel! A Grand Tour then  inevitably often took years and was fraught with quite as many perils as  pleasures.</p>
                               
                            </div>
                            <div class="col-lg-5 col-md-5 col-sm-12">
                                <center>
                                    <img src="images/lanka-map.png" alt="srilanka map"> 
                                </center>
                                
                            </div>
                        </div>
                    </div>
                </div>
                <!-- About Us END -->
                
                <div class="section-full bg-white content-inner-2 bgeffect overlay-black-middle" style="background-image:url(images/background/bg1.jpg); background-position:right" data-0="background-position:0px 0px;" data-end="background-position:0px -500px;">
                    <div class="container">
                        <div class="row">
                            <div class="col-lg-12 text-center col-md-12">
                                <div class="add-area">
                                    <h3>1000 $ for person - 6 nights</h3>
                                    <h2>Discount <span class="text-primary">10-30%</span> Off</h2>
                                    <p>If you’re looking for a truly memorable family break here you find the lowest price on the right hotel for you. It's indescribable. Stay up to date and check out the deals for these trending destinations.</p>
                                    <a href="#" class="site-button white">See Promotion Tours</a>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                
                <!-- Tour Package -->                
                <div class="section-full bg-white content-inner dlab-about-1 promotions" id="about-us">
                    <div class="container">
                        <div class="section-head d-flex text-black">
                            <div class="flex-grow-1">
                                <h2 class="text-uppercase m-b0 main-font">Select Your Tour Package</h2>
                                <p class="m-b0">CHOOSE YOUR NEXT TOUR PACKAGE</p>
                            </div>
                            <div class="align-self-center">
                                <a href="packages.html" class="site-button button-md pull-right m-t5">View All</a>
                            </div>
                        </div>
                    </div>
                    <div class="container">
                        <div class="row" id="masonry">
                            <div class="col-lg-4 col-md-6 col-sm-6 m-b30 card-container">
                                <div class="dlab-box">
                                    <div class="dlab-media"> <a href="#">
                                            <img src="images/tour/kandy-dancers.jpg" alt=""></a> 
                                        <div class="tr-price">
                                            <span>02 Days</span>
                                        </div>
                                    </div>
                                    <div class="dlab-info p-a20 border-1 text-center">
                                        <h4 class="dlab-title m-t0"><a href="">02 Days Cultural Tour</a></h4>
                                        <p class="text-justify">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and.</p>

                                        <div class="tr-btn-info">
                                            <a href="#" class="site-button radius-no"><i class="fa fa-calendar" aria-hidden="true"></i> Inquiry Now</a> 
                                            <a href="#" class="site-button bg-primary-dark radius-no"><i class="fa fa-location-arrow" aria-hidden="true"></i>  Details </a> 
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="col-lg-4 col-md-6 col-sm-6 m-b30 card-container">
                                <div class="dlab-box">
                                    <div class="dlab-media"> <a href="#">
                                            <img src="images/tour/invite-to-paradise-sri-lanka-holiday-honeymoon-vacation-specialists-cultural-triangle-excursion-ancient-city-ruins-polonnaruwa-medieval+capital-of-ceylon-UNESCO-world-heritage-site.jpg" alt=""></a> 
                                        <div class="tr-price">
                                            <span>3 Days</span>
                                        </div>
                                    </div>
                                    <div class="dlab-info p-a20 border-1 text-center">
                                        <h4 class="dlab-title m-t0"><a href="#">03 Days Cultural Tour</a></h4>
                                        <p class="text-justify">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and.</p>

                                        <div class="tr-btn-info">
                                            <a href="#" class="site-button radius-no"><i class="fa fa-calendar" aria-hidden="true"></i> Inquiry Now</a> 
                                            <a href="#" class="site-button bg-primary-dark radius-no"><i class="fa fa-location-arrow" aria-hidden="true"></i>  Details </a> 
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="col-lg-4 col-md-6 col-sm-6 m-b30 card-container">
                                <div class="dlab-box">
                                    <div class="dlab-media"> <a href="#">
                                            <img src="images/tour/surfcamp-sri-lanka-10.jpg" alt=""></a> 
                                        <div class="tr-price">
                                            <span>6 Days</span>
                                        </div>
                                    </div>
                                    <div class="dlab-info p-a20 border-1 text-center">
                                        <h4 class="dlab-title m-t0"><a href="booking-details.html">6 Days Surfing Tour</a></h4>
                                        <p class="text-justify">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and.</p>

                                        <div class="tr-btn-info">
                                            <a href="#" class="site-button radius-no"><i class="fa fa-calendar" aria-hidden="true"></i> Inquiry Now</a> 
                                            <a href="#" class="site-button bg-primary-dark radius-no"><i class="fa fa-location-arrow" aria-hidden="true"></i>  Details </a> 
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="col-lg-4 col-md-6 col-sm-6 m-b30 card-container">
                                <div class="dlab-box">
                                    <div class="dlab-media"> <a href="#">
                                            <img src="images/tour/round-turs.jpg" alt=""></a> 
                                        <div class="tr-price">
                                            <span>07 Days</span>
                                        </div>
                                    </div>
                                    <div class="dlab-info p-a20 border-1 text-center">
                                        <h4 class="dlab-title m-t0"><a href="booking-details.html">07 Days Rondtour </a></h4>
                                        <p class="text-justify">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and.</p>

                                        <div class="tr-btn-info">
                                            <a href="#" class="site-button radius-no"><i class="fa fa-calendar" aria-hidden="true"></i> Inquiry Now</a> 
                                            <a href="#" class="site-button bg-primary-dark radius-no"><i class="fa fa-location-arrow" aria-hidden="true"></i>  Details </a> 
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="col-lg-4 col-md-6 col-sm-6 m-b30 card-container">
                                <div class="dlab-box">
                                    <div class="dlab-media"> <a href="#">
                                            <img src="images/tour/round-tour-with-denmark.jpg" alt=""></a> 
                                        <div class="tr-price">
                                            <span>8 Days</span>
                                        </div>
                                    </div>
                                    <div class="dlab-info p-a20 border-1 text-center">
                                        <h4 class="dlab-title m-t0"><a href="booking-details.html">8 Days Beach Tour </a></h4>
                                        <p class="text-justify">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and.</p>

                                        <div class="tr-btn-info">
                                            <a href="#" class="site-button radius-no"><i class="fa fa-calendar" aria-hidden="true"></i> Inquiry Now</a> 
                                            <a href="#" class="site-button bg-primary-dark radius-no"><i class="fa fa-location-arrow" aria-hidden="true"></i>  Details </a> 
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="col-lg-4 col-md-6 col-sm-6 m-b30 card-container">
                                <div class="dlab-box">
                                    <div class="dlab-media"> <a href="#">
                                            <img src="images/tour/round.jpg" alt=""></a> 
                                        <div class="tr-price">
                                            <span>09 Days</span>
                                        </div>
                                    </div>
                                    <div class="dlab-info p-a20 border-1 text-center">
                                        <h4 class="dlab-title m-t0"><a href="booking-details.html">09 Days Popular Tour </a></h4>
                                        <p class="text-justify">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and.</p>

                                        <div class="tr-btn-info">
                                            <a href="#" class="site-button radius-no"><i class="fa fa-calendar" aria-hidden="true"></i> Inquiry Now</a> 
                                            <a href="#" class="site-button bg-primary-dark radius-no"><i class="fa fa-location-arrow" aria-hidden="true"></i>  Details </a> 
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <!-- Tour Package Us END -->
                <!-- Destinations END -->
                <div class="section-full bg-white content-inner_1_2 dlab-about-1">
                    <div class="container">
                        <div class="section-head d-flex text-black">
                            <div class="flex-grow-1">
                                <h2 class="text-uppercase m-b0 main-font">Popular Excursions</h2>
                                <p class="m-b0">CHOOSE YOUR NEXT EXCURSION</p>
                            </div>
                            <div class="align-self-center">
                                <a href="packages.html" class="site-button button-md pull-right m-t5">View All</a>
                            </div>
                        </div>
                    </div>
                    <div class="container">                        
                        <div class="row">
                            <div class="col-md-6 col-lg-4 col-sm-6 m-b30">
                                <div class="dlab-box hotal-box" data-tilt data-tilt-max="10" data-tilt-speed="1">
                                    <div class="dlab-media dlab-img-effect dlab-img-overlay2"> <img src="images/excuation/birdwatch.jpg" alt="">
                                        <div class="dlab-info-has p-a20 text-white no-hover">
                                            <h4 class="m-t0 m-b10">Bird Watching</h4>
                                            <span>3 nights + Flight 5*Hotel</span>

                                            <a href="hotel-booking.html" class="site-button outline outline-2 radius-xl pull-right">View More</a>

                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="col-md-6 col-lg-4 col-sm-6 m-b30">
                                <div class="dlab-box hotal-box" data-tilt data-tilt-max="10" data-tilt-speed="1">
                                    <div class="dlab-media dlab-img-effect dlab-img-overlay2"> <img src="images/excuation/waterrafting.jpg" alt="">
                                        <div class="dlab-info-has p-a20 text-white no-hover">
                                            <h4 class="m-t0 m-b10">Water Rafting</h4>
                                            <span>3 nights + Flight 5*Hotel</span>
                                            <a href="hotel-booking.html" class="site-button outline outline-2 radius-xl pull-right">View More</a>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="col-md-6 col-lg-4 col-sm-6 m-b30">
                                <div class="dlab-box hotal-box" data-tilt data-tilt-max="10" data-tilt-speed="1">
                                    <div class="dlab-media dlab-img-effect dlab-img-overlay2"> <img src="images/excuation/jet sky.jpg" alt="">
                                        <div class="dlab-info-has p-a20 text-white no-hover">
                                            <h4 class="m-t0 m-b10">Jet Sky</h4>
                                            <span>3 nights + Flight 5*Hotel</span>
                                            <a href="hotel-booking.html" class="site-button outline outline-2 radius-xl pull-right">View More</a>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="col-md-6 col-lg-4 col-sm-6 m-b30">
                                <div class="dlab-box hotal-box" data-tilt data-tilt-max="10" data-tilt-speed="1">
                                    <div class="dlab-media dlab-img-effect dlab-img-overlay2"> <img src="images/excuation/diving.jpg" alt="">
                                        <div class="dlab-info-has p-a20 text-white no-hover">
                                            <h4 class="m-t0 m-b10">Scuba Diving</h4>
                                            <span>3 nights + Flight 5*Hotel</span>
                                            <a href="hotel-booking.html" class="site-button outline outline-2 radius-xl pull-right">View More</a>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="col-md-6 col-lg-4 col-sm-6 m-b30">
                                <div class="dlab-box hotal-box" data-tilt data-tilt-max="10" data-tilt-speed="1">
                                    <div class="dlab-media dlab-img-effect dlab-img-overlay2"> <img src="images/excuation/cycling.jpg" alt="">
                                        <div class="dlab-info-has p-a20 text-white no-hover">
                                            <h4 class="m-t0 m-b10">Cycling</h4>
                                            <span>3 nights + Flight 5*Hotel</span>
                                            <a href="hotel-booking.html" class="site-button outline outline-2 radius-xl pull-right">View More</a>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="col-md-6 col-lg-4 col-sm-6 m-b30">
                                <div class="dlab-box hotal-box" data-tilt data-tilt-max="10" data-tilt-speed="1">
                                    <div class="dlab-media dlab-img-effect dlab-img-overlay2"> <img src="images/excuation/wild.jpg" alt="">
                                        <div class="dlab-info-has p-a20 text-white no-hover">
                                            <h4 class="m-t0 m-b10">Wildlife Safari</h4>
                                            <span>3 nights + Flight 5*Hotel</span>
                                            <a href="hotel-booking.html" class="site-button outline outline-2 radius-xl pull-right">View More</a>
                                        </div>
                                    </div>
                                </div>
                            </div> 
                        </div>
                    </div>
                </div>
            </div>


            <!-- Destinations -->
            
            <!-- Destinations END -->
            <div class="section-full bg-white content-inner-1 content-inner_1_3 dlab-about-1 promotions">
                <div class="container">
                    <div class="section-head d-flex text-black">
                        <div class="flex-grow-1">
                            <h2 class="text-uppercase m-b0">Feedback</h2>
                            <p class="m-b0">CUSTOMER SATISFACTIONS</p>
                        </div>
                        <div class="align-self-center">
                            <a href="packages.html" class="site-button button-md pull-right m-t5">View All</a>
                        </div>
                    </div>
                </div>
                <div class="container"> 
                    <div id="myCarousel" class="carousel slide" data-ride="carousel">
                        <!-- Carousel indicators -->
                        <ol class="carousel-indicators">
                            <li data-target="#myCarousel" data-slide-to="0" class="active"></li>
                            <li data-target="#myCarousel" data-slide-to="1"></li>
                            <li data-target="#myCarousel" data-slide-to="2"></li>
                        </ol>   
                        <!-- Wrapper for carousel items -->
                        <div class="carousel-inner">		
                            <div class="item carousel-item active">
                                <div class="img-box"><img src="images/2.jpg" alt=""></div>
                                <p class="testimonial">Phasellus vitae suscipit justo. Mauris pharetra feugiat ante id lacinia. Etiam faucibus mauris id tempor egestas. Duis luctus turpis at accumsan tincidunt. Phasellus risus risus, volutpat vel tellus ac, tincidunt fringilla massa. Etiam hendrerit dolor eget rutrum.</p>
                                <p class="overview"><b>Michael Holz</b>Seo Analyst at <a href="#">OsCorp Tech.</a></p>

                            </div>
                            <div class="item carousel-item">
                                <div class="img-box"><img src="images/2.jpg" alt=""></div>
                                <p class="testimonial">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eu sem tempor, varius quam at, luctus dui. Mauris magna metus, dapibus nec turpis vel, semper malesuada ante. Vestibulum idac nisl bibendum scelerisque non non purus. Suspendisse varius nibh non aliquet.</p>
                                <p class="overview"><b>Paula Wilson</b>Media Analyst at <a href="#">SkyNet Inc.</a></p>

                            </div>
                            <div class="item carousel-item">
                                <div class="img-box"><img src="images/2.jpg" alt=""></div>
                                <p class="testimonial">Vestibulum quis quam ut magna consequat faucibus. Pellentesque eget nisi a mi suscipit tincidunt. Utmtc tempus dictum risus. Pellentesque viverra sagittis quam at mattis. Suspendisse potenti. Aliquam sit amet gravida nibh, facilisis gravida odio. Phasellus auctor velit.</p>
                                <p class="overview"><b>Antonio Moreno</b>Web Developer at <a href="#">Circle Ltd.</a></p>

                            </div>		
                        </div>
                        <!-- Carousel controls -->
                        <a class="carousel-control left carousel-control-prev" href="#myCarousel" data-slide="prev">
                            <i class="fa fa-angle-left"></i>
                        </a>
                        <a class="carousel-control right carousel-control-next" href="#myCarousel" data-slide="next">
                            <i class="fa fa-angle-right"></i>
                        </a>
                    </div>
                </div>
            </div>
        </div>
        <!-- Footer -->
        <footer class="site-footer content-inner_1_2">
    <div class="footer-top overlay-black-dark">
        <div class="container">
            <div class="row">
                <div class="col-lg-3 col-md-6 col-sm-5 footer-col-4">
                    <div class="widget widget_getintuch">
                        <h6 class="m-b15 h6 text-uppercase">TRAVEL</h6>
                        <div class="dlab-separator bg-white"></div>
                        <ul class="info-contact">
                            <li>
                                <span>
                                    <i class="fa fa-map-marker	"></i> Brodway Road 234, New York
                                </span>
                            </li>

                            <li>
                                <span>
                                    <i class="fa fa-phone"></i> Mobile: +00 1234 456789 <br/>+10 1234 456789 
                                </span>
                            </li>

                            <li>
                                <span>
                                    <i class="fa fa-envelope-o"></i> Mail: [email protected]
                                </span>
                            </li>
                            <li>
                                <span>
                                    <i class="fa fa-fax"></i> Fax: 000 123 2294 089
                                </span>
                            </li>
                        </ul>
                    </div>
                    <ul class="list-inline">
                        <li><a href="javascript:void(0);" class="site-button facebook sharp"><i class="fa fa-facebook"></i></a></li>
                        <li><a href="javascript:void(0);" class="site-button google-plus sharp"><i class="fa fa-google-plus"></i></a></li>
                        <li><a href="javascript:void(0);" class="site-button linkedin sharp"><i class="fa fa-linkedin"></i></a></li>
                        <li><a href="javascript:void(0);" class="site-button twitter sharp"><i class="fa fa-twitter"></i></a></li>
                    </ul>
                </div>
                <div class="col-lg-3 col-md-6 col-sm-7 footer-col-4">
                    <div class="widget  widget_tag_cloud">
                        <h6 class="m-b15 h6 text-uppercase">Tag</h6>
                        <div class="dlab-separator bg-white"></div>
                        <div class="tagcloud"> 
                            <a href="">HOME</a> 
                            <a href="">ABOUT US</a> 
                            <a href="">EXCURSION</a> 
                            <a href="">TOUR PACKAGES</a> 
                            <a href="">FEEDBACK</a> 
                            <a href="">GALLERY</a> 
                            <a href="">CONTACT US</a> 

                        </div>
                    </div>
                </div>
                <div class="col-lg-3 col-md-6 col-sm-7 footer-col-4">
                    <div class="widget  widget_tag_cloud">
                        <h6 class="m-b15 h6 text-uppercase">TOUR PACKAGES</h6>
                        <div class="dlab-separator bg-white"></div>
                        <div class="tagcloud"> 
                            <a href="">02 Days Cultural Tour</a> 
                            <a href="">03 Days Cultural Tour</a> 
                            <a href="">6 Days Surfing Tour</a> 
                            <a href="">07 Days Rondtour </a> 
                            <a href="">8 Days Beach Tour </a> 
                            <a href="">09 Days Popular Tour </a>  

                        </div>
                    </div>
                </div>

                <div class="col-lg-3 col-md-6 col-sm-6 footer-col-4">
                    <div class="widget widget_gallery">
                        <h6 class="m-b15 h6 text-uppercase">GALLERY</h6>
                        <div class="dlab-separator bg-white"></div>
                        <ul class="clearfix mfp-gallery">
                            <li class="img-effect2"><a class="mfp-link" href="images/attraction/colombo.jpg" title="Title Come Here"><img src="images/attraction/colombo.jpg" alt=""></a> </li>
                            <li class="img-effect2"><a class="mfp-link" href="images/attraction/dambulla.jpg" title="Title Come Here"><img src="images/attraction/dambulla.jpg" alt=""></a> </li>
                            <li class="img-effect2"><a class="mfp-link" href="images/attraction/ella.jpg" title="Title Come Here"><img src="images/attraction/ella.jpg" alt=""></a> </li>
                            <li class="img-effect2"><a class="mfp-link" href="images/attraction/hortonplains.jpg" title="Title Come Here"><img src="images/attraction/hortonplains.jpg" alt=""></a> </li>
                            <li class="img-effect2"><a class="mfp-link" href="images/attraction/kandy.jpg" title="Title Come Here"><img src="images/attraction/kandy.jpg" alt=""></a> </li>
                            <li class="img-effect2"><a class="mfp-link" href="images/attraction/mirissa.jpg" title="Title Come Here"><img src="images/attraction/mirissa.jpg" alt=""></a> </li>		
                            <li class="img-effect2"><a class="mfp-link" href="images/attraction/pinnawala.jpg" title="Title Come Here"><img src="images/attraction/pinnawala.jpg" alt=""></a> </li>
                            <li class="img-effect2"><a class="mfp-link" href="images/attraction/sigiriya.jpg" title="Title Come Here"><img src="images/attraction/sigiriya.jpg" alt=""></a> </li>
                            <li class="img-effect2"><a class="mfp-link" href="images/attraction/yala.jpg" title="Title Come Here"><img src="images/attraction/yala.jpg" alt=""></a> </li>	
                        </ul>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <!-- footer bottom part -->
    <div class="footer-bottom">
        <div class="container">
            <div class="row">
                <div class="col-lg-6 col-md-6 text-left"> <span>Copyright © 2019 </span> Travel with Susa</div>
                <div class="col-lg-6 col-md-6 text-right "><span> Design By <i class="fa fa-heart text-primary heart"></i>  Synotec (PVT) Holdings </span> </div>
            </div>
        </div>
    </div>
</footer>        <!-- Footer END-->
        <!-- scroll top button -->
        <button class="scroltop fa fa-plane " ></button>
    </div>
    <!-- JAVASCRIPT FILES ========================================= -->
    <script src="js/jquery.min.js"></script><!-- JQUERY.MIN JS -->
    <script src="plugins/wow/wow.js"></script><!-- WOW JS -->
    <script src="plugins/bootstrap/js/popper.min.js"></script><!-- BOOTSTRAP.MIN JS -->
    <script src="plugins/bootstrap/js/bootstrap.min.js"></script><!-- BOOTSTRAP.MIN JS -->
    <script src="plugins/bootstrap-select/bootstrap-select.min.js"></script><!-- FORM JS -->
    <script src="plugins/bootstrap-touchspin/jquery.bootstrap-touchspin.js"></script><!-- FORM JS -->
    <script src="plugins/magnific-popup/magnific-popup.js"></script><!-- MAGNIFIC POPUP JS -->
    <script src="plugins/counter/waypoints-min.js"></script><!-- WAYPOINTS JS -->
    <script src="plugins/counter/counterup.min.js"></script><!-- COUNTERUP JS -->
    <script src="plugins/imagesloaded/imagesloaded.js"></script><!-- IMAGESLOADED -->
    <script src="plugins/masonry/masonry-3.1.4.js"></script><!-- MASONRY -->
    <script src="plugins/masonry/masonry.filter.js"></script><!-- MASONRY -->
    <script src="plugins/owl-carousel/owl.carousel.js"></script><!-- OWL SLIDER -->
    <script src="plugins/rangeslider/rangeslider.js" ></script><!-- Rangeslider -->
    <script src="plugins/datepicker/js/moment.js"></script><!-- DATEPICKER JS -->
    <script src="plugins/datepicker/js/bootstrap-datetimepicker.min.js"></script><!-- DATEPICKER JS -->
    <script src="js/custom.js"></script><!-- CUSTOM FUCTIONS  -->
    <script src="js/dz.carousel.js"></script><!-- SORTCODE FUCTIONS  -->
    <script src='../../www.google.com/recaptcha/api.js'></script> <!-- Google API For Recaptcha  -->
    <script src="js/dz.ajax.js"></script><!-- CONTACT JS  -->
    
    <script src="plugins/paroller/skrollr.min.js"></script><!-- PAROLLER -->
    <!-- REVOLUTION JS FILES -->
    <script src="plugins/revolution/revolution/js/jquery.themepunch.tools.min.js"></script>
    <script src="plugins/revolution/revolution/js/jquery.themepunch.revolution.min.js"></script>
    <!-- Slider revolution 5.0 Extensions  (Load Extensions only on Local File Systems !  The following part can be removed on Server for On Demand Loading) -->
    <script src="plugins/revolution/revolution/js/extensions/revolution.extension.actions.min.js"></script>
    <script src="plugins/revolution/revolution/js/extensions/revolution.extension.carousel.min.js"></script>
    <script src="plugins/revolution/revolution/js/extensions/revolution.extension.kenburn.min.js"></script>
    <script src="plugins/revolution/revolution/js/extensions/revolution.extension.layeranimation.min.js"></script>
    <script src="plugins/revolution/revolution/js/extensions/revolution.extension.migration.min.js"></script>
    <script src="plugins/revolution/revolution/js/extensions/revolution.extension.navigation.min.js"></script>
    <script src="plugins/revolution/revolution/js/extensions/revolution.extension.parallax.min.js"></script>
    <script src="plugins/revolution/revolution/js/extensions/revolution.extension.slideanims.min.js"></script>
    <script src="plugins/revolution/revolution/js/extensions/revolution.extension.video.min.js"></script>
    <script src="js/rev.slider.js"></script>
    <script>
        jQuery(document).ready(function () {
            'use strict';
            dz_rev_slider_1();
            $('#datetimepicker4').datetimepicker();
        });	/*ready*/
    </script>
</body>
</html>home/islapiiu/sites/lasatour/test.php000064400000011741150767707610014010 0ustar00<!DOCTYPE html>
<html>
    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1">
         <!-- META -->
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta name="description" content="TravelCo - Travel Agency Bootstrap Template">
        <meta name="keywords" content=" new, html, bootstrap, new html template, design, creative, clean, modern">
        <meta name="author" content="Nauman Anwar">
        <!-- PAGE TITLE -->
        <title>Home</title>
        <!-- BOOTSTRAP CSS -->
        <link rel="stylesheet" href="assets/css/bootstrap.css">
        <!-- ALL GOOGLE FONTS -->
        <link href="https://fonts.googleapis.com/css?family=Rubik:300,500,900" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
        <!-- FONT AWESOME CSS -->
        <link rel="stylesheet" href="assets/fonts/line-awesome-font-awesome.min.css">
        <link rel="stylesheet" type="text/css" href="assets/revolution/css/settings.css">
        <link rel="stylesheet" type="text/css" href="assets/revolution/css/navigation.css">
        <!-- OWL CAROSEL CSS -->
        <link rel="stylesheet" href="assets/owlcarousel/css/owl.carousel.css">
        <link rel="stylesheet" href="assets/owlcarousel/css/owl.theme.css">
        <link rel="stylesheet" href="assets/css/owl.carousel.min.css">
        <!-- MAGNIFIC CSS -->
        <link rel="stylesheet" href="assets/css/magnific-popup.css">
        <!-- ANIMATE CSS -->
        <link rel="stylesheet" href="assets/css/animate.min.css">
        <!-- MAIN STYLE CSS -->
        <link rel="stylesheet" href="assets/css/venobox.css" type="text/css" media="screen" />
        <link rel="stylesheet" href="assets/css/style.css">
        <link href="assets/css/custom.css" rel="stylesheet" type="text/css"/>
        <!-- color STYLE CSS -->
        <link rel="stylesheet" href="assets/css/color-switcher.css">
        <!-- RESPONSIVE CSS -->
        <link rel="stylesheet" href="assets/css/responsive.css">

        <link rel="stylesheet" type="text/css" href="assets/css/media-queries.css">
        <link href="assets/css/simplelightbox.min.css" rel="stylesheet" type="text/css"/>
        <link href="slider/font-awesome.min.css" rel="stylesheet" type="text/css"/>
        <link href="slider/slick.css" rel="stylesheet" type="text/css"/>
        <link href="slider/style.css" rel="stylesheet" type="text/css"/>
        <style>
         

            .overlay1 {
                height: 100%;
                width: 0;
                position: fixed;
                z-index: 1;
                top: 0;
                left: 0;
                background-color: rgb(0,0,0);
                background-color: rgba(0,0,0, 0.9);
                overflow-x: hidden;
                transition: 0.5s;
            }

            .overlay1-content {
                position: relative;
                top: 25%;
                width: 100%;
                text-align: center;
                margin-top: 30px;
            }

            .overlay1 a {
                padding: 8px;
                text-decoration: none;
                font-size: 36px;
                color: #818181;
                display: block;
                transition: 0.3s;
            }

            .overlay1 a:hover, .overlay1 a:focus {
                color: #f1f1f1;
            }

            .overlay1 .closebtn {
                position: absolute;
                top: 20px;
                right: 45px;
                font-size: 60px;
            }

            @media screen and (max-height: 450px) {
                .overlay1 a {font-size: 20px}
                .overlay1 .closebtn {
                    font-size: 40px;
                    top: 15px;
                    right: 35px;
                }
            }
        </style>
    </head>
    <body>

        <div id="myNav" class="overlay1">
            <a href="javascript:void(0)" class="closebtn" onclick="closeNav()">&times;</a>
            <div class="overlay1-content">
                <a href="#">About</a>
                <a href="#">Services</a>
                <a href="#">Clients</a>
                <a href="#">Contact</a>
            </div>
        </div>

        <h2>Fullscreen Overlay Nav Example</h2>
        <p>Click on the element below to open the fullscreen overlay navigation menu.</p>
        <p>In this example, the navigation menu will slide in, from left to right:</p>
        <span style="font-size:30px;cursor:pointer" onclick="openNav()">&#9776; open</span>

        <script>
            function openNav() {
                document.getElementById("myNav").style.width = "100%";
            }

            function closeNav() {
                document.getElementById("myNav").style.width = "0%";
            }
        </script>

    </body>
</html>
home/islapiiu/sites/chaayainn/test.php000064400000060306150770003030014065 0ustar00   <div class="gallery">
                        <h1 class="element-invisible">Gallery</h1>
                        <!-- FILTER -->
                        <div class="gallery-cat text-center">
                            <ul class="list-inline">


                                <li class="active"><a href="#" data-filter="*">All</a></li>

                                <?php
                                $PHOTO_ALBUM = new PhotoAlbum(NULL);

                                foreach ($PHOTO_ALBUM->all() as $key => $photo_album) {
                                    ?>

                                    <li class=""><a href="#" data-filter=".<?php echo $photo_album['id'] ?>"><?php echo $photo_album['title'] ?></a></li>
                                <?php } ?>

                                <!--                                <li class=""><a href="#" data-filter=".ground">HOTEL &amp; GROUND</a></li>
                                                                <li class=""><a href="#" data-filter=".suite">ROOM/SUITE </a></li>
                                                                <li class=""><a href="#" data-filter=".bathroom">BATHROOM</a></li>
                                                                <li class=""><a href="#" data-filter=".dining">DINING</a></li>-->
                            </ul>
                        </div>
                        <!-- END / FILTER -->

                        <!-- GALLERY CONTENT -->
                        <div class="gallery-content">

                            <div class="row">
                                <div class="gallery-isotope col-4" style="position: relative; height: 616.899px;">

                                    <!-- ITEM SIZE -->
                                    <div class="item-size"></div>
                                    <!-- END / ITEM SIZE -->

                                    <?php
                                    $PHOTO_ALBUM = new PhotoAlbum(NULL);
                                    $ALBUM_PHOTO = new AlbumPhoto(NULL);
                                    foreach ($PHOTO_ALBUM->all() as $key => $photo_albums) {
                                        foreach ($ALBUM_PHOTO->getAlbumPhotosById($photo_albums['id']) as $album_photo) {
                                            ?> 




                                            <!-- ITEM -->
                                            <div class="item-isotope <?php echo $album_photo['album'] ?>" style="position: absolute; left: 0%; top: 0px; display: none;">
                                                <div class="gallery_item">
                                                    <a href="upload/photo-album/gallery/<?php echo $album_photo['image_name'] ?>" class="mfp-image">
                                                        <img src="upload/photo-album/gallery/thumb/<?php echo $album_photo['image_name'] ?>" alt="">
                                                    </a>
                                                    <h6 class="text"><?php echo $album_photo['caption'] ?></h6>
                                                </div> 
                                            </div>
                                            <!-- END / ITEM -->
                                            <?php
                                        }
                                    }
                                    ?> 




                                    <!--                                     ITEM 
                                                                        <div class="item-isotope ground bathroom suite" style="position: absolute; left: 0%; top: 0px;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-2.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope  ground bathroom dinin" style="position: absolute; left: 25%; top: 0px;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-3.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope suite dining" style="position: absolute; left: 75%; top: 0px; display: none;">
                                                                            <div class="gallery_item">
                                    
                                    
                                                                                <img src="images/gallery/img-4.jpg" alt="">
                                    
                                    
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope  ground suite dining" style="position: absolute; left: 50%; top: 0px;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-5.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope ground bathroom dining" style="position: absolute; left: 75%; top: 0px;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-6.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope ground suite dining" style="position: absolute; left: 0%; top: 205px;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-7.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope bathroom suite dining" style="position: absolute; left: 75%; top: 205px; display: none;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-8.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope bathroom suite dining" style="position: absolute; left: 0%; top: 411px; display: none;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-9.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope  " style="position: absolute; left: 25%; top: 411px; display: none;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-10.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope ground bathroom suite" style="position: absolute; left: 25%; top: 205px;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-11.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope ground bathroom" style="position: absolute; left: 50%; top: 205px;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-12.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                                                        <div class="item-isotope suite dining" style="position: absolute; left: 0%; top: 616px; display: none;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-13.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope ground bathroom suite" style="position: absolute; left: 75%; top: 205px;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-14.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope  ground bathroom dinin" style="position: absolute; left: 0%; top: 411px;">
                                                                            <div class="gallery_item">
                                                                                <a href="https://www.youtube.com/watch?v=RnjZ6IhkR40" class="mfp-iframe">
                                                                                    <img src="images/gallery/img-15.jpg" alt="">
                                                                                </a>
                                    
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope suite dining" style="position: absolute; left: 75%; top: 616px; display: none;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-16.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                                                        <div class="item-isotope suite dining" style="position: absolute; left: 0%; top: 822px; display: none;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-17.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope ground bathroom suite" style="position: absolute; left: 25%; top: 411px;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-18.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope  ground bathroom dinin" style="position: absolute; left: 50%; top: 411px;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-19.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM 
                                    
                                                                         ITEM 
                                                                        <div class="item-isotope suite dining" style="position: absolute; left: 75%; top: 822px; display: none;">
                                                                            <div class="gallery_item">
                                                                                <a href="images/gallery/popup/img-1.jpg" class="mfp-image">
                                                                                    <img src="images/gallery/img-20.jpg" alt="">
                                                                                </a>
                                                                                <h6 class="text">Lorem Ipsum is simply dummy text of the printing</h6>
                                                                            </div>
                                                                        </div>
                                                                         END / ITEM -->

                                </div>
                            </div>

                        </div>
                        <!-- GALLERY CONTENT -->

                    </div>home/islapiiu/sites/srilekha/test.php000064400000025340151061047330013740 0ustar00<?php
include_once(dirname(__FILE__) . '/../class/include.php');
include_once(dirname(__FILE__) . '/auth.php');
$id = '';
if (isset($_GET['id'])) {
    $id = $_GET['id'];
}
$PRODUCT_TYPE = new ProductType($id);
?>
<!DOCTYPE html>


<html>
    <head>
        <meta charset="UTF-8">
        <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
        <title>products</title>
        <!-- Favicon-->
        <link rel="icon" href="favicon.ico" type="image/x-icon">
        <link href="https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">
        <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css">
        <link href="plugins/bootstrap/css/bootstrap.css" rel="stylesheet">
        <link href="plugins/node-waves/waves.css" rel="stylesheet" />
        <link href="plugins/animate-css/animate.css" rel="stylesheet" />
        <link href="plugins/sweetalert/sweetalert.css" rel="stylesheet" />
        <link href="css/style.css" rel="stylesheet">
        <link href="css/themes/all-themes.css" rel="stylesheet" />
    </head>

    <body class="theme-red">
        <?php
        include './navigation-and-header.php';
        ?>

        <section class="content">
            <div class="container-fluid"> 
                <?php
                $vali = new Validator();

                $vali->show_message();
                ?>
                <!-- Vertical Layout -->
                <div class="row clearfix">
                    <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
                        <div class="card">
                            <div class="header">
                                <h2>Create Products</h2>
                                <ul class="header-dropdown">
                                    <li class="">
                                        <a href="manage-product-type.php">
                                            <i class="material-icons">list</i>
                                        </a>
                                    </li>
                                </ul>
                            </div>
                            <div class="body">
                                <form class="form-horizontal"  method="post" action="post-and-get/product.php" enctype="multipart/form-data">
                                    <div class="col-md-12">                                      
                                        <div class="form-group form-float">
                                            <div class="form-line">
                                                <input type="text" id="name" class="form-control"  autocomplete="off" name="name" required="true">
                                                <label class="form-label">Name</label>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="col-md-12">
                                        <div class="form-group form-float">
                                            <div class="form-line">
                                                <input type="file" id="image" class="form-control" name="image" required="true">
                                            </div>
                                        </div>
                                    </div>
                                    <div class="col-md-12">                                      
                                        <div class="form-group form-float">
                                            <div class="form-line">
                                                <input type="text" id="short_description" class="form-control"  autocomplete="off" name="price" required="true">
                                                <label class="form-label">Price</label>
                                            </div>
                                        </div>
                                    </div>



                                    <div class="col-md-12">                                      
                                        <div class="form-group form-float">
                                            <div class="form-line">
                                                <input type="text" id="short_description" class="form-control"  autocomplete="off" name="quantity" required="true">
                                                <label class="form-label">Quantity</label>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="col-md-12">                                      
                                        <div class="form-group form-float">
                                            <div class="form-line">
                                                <input type="text" id="short_description" class="form-control"  autocomplete="off" name="short_description" required="true">
                                                <label class="form-label">Short Description</label>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="col-md-12">                                      
                                        <div class="form-group form-float">
                                            <label class="form-label">Description</label>
                                            <div class="form-line">
                                                <textarea id="description" name="description" class="form-control" rows="5"></textarea>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="col-md-12">
                                        <input type="hidden" id="id" value="<?php echo $PRODUCT_TYPE->id; ?>" name="id"/>
                                        <input type="submit" name="create" class="btn btn-primary TYPEm-t-15 waves-effect" value="create"/>
                                    </div>
                                </form>
                                <div class="row">
                                </div>
                                <hr/>

                                <div class="row clearfix">
                                    <?php
                                    $PRODUCT = Product::getProductsById($id);
                                    if (count($PRODUCT) > 0) {
                                        foreach ($PRODUCT as $key => $product) {
                                            ?>
                                            <div class="col-md-3"  id="div<?php echo $product['id']; ?>">
                                                <div class="photo-img-container">
                                                    <img src="../upload/product-type/product/<?php echo $product['image_name']; ?>" class="img-responsive ">
                                                </div>
                                                <div class="img-caption">
                                                    <p class="maxlinetitle"><?php echo $product['name']; ?></p>
                                                    <div class="d">
                                                        <a href="#" class="delete-product" data-id="<?php echo $product['id']; ?>"> <button class="glyphicon glyphicon-trash delete-btn"></button></a>
                                                        <a href="edit-product.php?id=<?php echo $product['id']; ?>"> <button class="glyphicon glyphicon-pencil edit-btn"></button></a>
                                                        <a href="arrange-products.php?id=<?php echo $id; ?>">  <button class="glyphicon glyphicon-random arrange-btn"></button></a>
                                                    </div>
                                                </div>
                                            </div>
                                            <?php
                                        }
                                    } else {
                                        ?>
                                        <b style="padding-left: 15px;">No Products in the database.</b>
                                    <?php } ?>

                                </div>
                            </div>
                        </div>
                    </div>
                </div>


                <!-- #END# Vertical Layout -->

            </div>
        </section>

        <!-- Jquery Core Js -->
        <script src="plugins/jquery/jquery.min.js"></script>
        <script src="plugins/bootstrap/js/bootstrap.js"></script>
        <script src="plugins/jquery-slimscroll/jquery.slimscroll.js"></script>
        <script src="plugins/node-waves/waves.js"></script>
        <script src="js/admin.js"></script>
        <script src="js/demo.js"></script>
        <script src="js/add-new-ad.js" type="text/javascript"></script>

        <script src="plugins/sweetalert/sweetalert.min.js"></script>
        <script src="plugins/bootstrap-notify/bootstrap-notify.js"></script>
        <script src="js/pages/ui/dialogs.js"></script>

        <script src="delete/js/service-photo.js" type="text/javascript"></script>
        <script src="tinymce/js/tinymce/tinymce.min.js"></script>
        <script src="delete/js/product.js" type="text/javascript"></script>
        <script>
            tinymce.init({
                selector: "#description",
                // ===========================================
                // INCLUDE THE PLUGIN
                // ===========================================

                plugins: [
                    "advlist autolink lists link image charmap print preview anchor",
                    "searchreplace visualblocks code fullscreen",
                    "insertdatetime media table contextmenu paste"
                ],
                // ===========================================
                // PUT PLUGIN'S BUTTON on the toolbar
                // ===========================================

                toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image jbimages",
                // ===========================================
                // SET RELATIVE_URLS to FALSE (This is required for images to display properly)
                // ===========================================

                relative_urls: false

            });


        </script>
    </body>

</html>