home
/
zktecojo
/
public_html
/
app
/
views
/
frontend
➕ New
📤 Upload
✎ Editing:
video_gallery.blade.php
← Back
@extends('layouts.frontend.master') @section('metatags') <meta name="title" content="{{{$pageContent->page_meta_title}}}" /> <meta name="description" content="{{{$pageContent->page_meta_description}}}" /> <meta name="keywords" content="{{{$pageContent->page_meta_keyword}}}" /> @stop @section('seoPageTitle') <title><?php echo (!empty($pageContent->page_seo_title))?$pageContent->page_seo_title:$pageTitle; ?></title> @stop @section('styles') @parent @stop @section('content') <section class="sectionsWrap chairmanSection"> <div class="container"> <?php if(!empty($breadCrumbs)) { ?> <div class="breadcrumbsWrap"> {{ $breadCrumbs }} <div class="clearfix"></div> </div> <?php } ?> <div class="row"> <div class="col-sm-8 right-area"> <div class="animated wow fadeInRight"> <?php if(!empty($videoGallery)){ ?> <h2>{{{$pageContent->page_name}}}</h2> <div class="gallery-block"> <div class="row gallery-block-row"> <?php foreach($videoGallery as $video) { ?> <div class="col-sm-6"> <div class="gallery-thumb"> <a title="{{{$pageContent->page_name}}}" href="{{ $video->vg_video_link }}" class="videoGalleryIframe"> <img src="http://img.youtube.com/vi/{{ $video->vg_youtube_id }}/0.jpg"/> <div class="play-button"></div> </a> <?php /* <div class="col-sm-6"> <iframe title="YouTube video player" class="youtube-player" type="text/html" width="100%" height="200" src="http://www.youtube.com/embed/{{ $video->vg_youtube_id }}" frameborder="0" allowFullScreen></iframe> </div> */ ?> </div> </div> <?php } ?> </div> </div> <?php }else{ ?> Coming Soon <?php } ?> </div> </div> <div class="col-sm-4" id="sideBar"> @include('frontend.common.left_sub_menu') </div> </div> </div> </section> @stop @section('scripts') @parent <script src="<?php echo asset("assets/js/jquery.fancybox.js"); ?>"></script> <script> $(document).ready(function(){ $('.fancybox').fancybox(); $(".videoGalleryIframe").click(function() { $.fancybox({ 'padding' : 0, 'autoScale' : false, 'transitionIn' : 'none', 'transitionOut' : 'none', 'title' : this.title, 'width' : 640, 'height' : 385, 'href' : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'), 'type' : 'swf', 'swf' : { 'wmode' : 'transparent', 'allowfullscreen' : 'true' } }); return false; }); }); </script> <?php if(!empty($ourPeople)) { ?> <script> <?php if(!empty($hasCompanyBrochureForm) && $hasCompanyBrochureForm){ ?> function refresh_captcha(){ d = new Date(); $("#captchaImage").attr("src", "<?php echo asset('/captcha')?>?"+d.getTime()); } $(document).ready(function(){ $('.fa-refresh').on('click',function() { refresh_captcha(); }); $('#submitbtn').on('click',function(e){ $('#ajaxLoader').show(); e.preventDefault(); sendAsyncAjax($('#requestBrochureForm').attr('action'),$('#requestBrochureForm').serialize(),function(response){ // console.log(response) if(response.message){ $('#errorMessage').html(response.message); $('#errorMessage').fadeIn('slow'); setTimeout(function(){ $('#errorMessage').fadeOut('slow'); },15000); } refresh_captcha(); $('.form-control').val(''); $('#ajaxLoader').hide(); }); }); }); <?php } ?> </script> <?php } ?> @stop
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel