116 lines
3.8 KiB
PHP
116 lines
3.8 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title><?php echo SITEVARS->Campaigns[0]->seo_title;?> : {{env("APP_NAME")}}</title>
|
|
<link rel="icon" type="image/x-icon" href="<?php echo SITEVARS->icon; ?>">
|
|
@if (!View::hasSection('seo'))
|
|
@include(env("CLIENT_PATH").'.partials.seo')
|
|
@endif
|
|
@yield("seo")
|
|
<!-- Stylesheets -->
|
|
<!-- Favicons -->
|
|
<link href="assets/img/favicon.png" rel="icon">
|
|
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
|
|
|
|
<!-- Google Fonts -->
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Nunito:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
|
|
|
|
<!-- Vendor CSS Files -->
|
|
<link href="{!! template('css/bootstrap.min.css')!!}" rel="stylesheet">
|
|
|
|
<!-- Loading Template CSS -->
|
|
<link href="{!! template('css/style.css')!!}" rel="stylesheet">
|
|
<link href="{!! template('css/animate.css')!!}" rel="stylesheet">
|
|
<link href="{!! template('css/style-magnific-popup.css')!!}" rel="stylesheet">
|
|
|
|
<!-- Awsome Fonts -->
|
|
<link rel="stylesheet" href="{!! template('css/all.min.css')!!}">
|
|
|
|
<!-- Fonts -->
|
|
<link href="https://fonts.googleapis.com/css?family=Dosis:500,600" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300i,400,400i,600,700" rel="stylesheet">
|
|
|
|
<!-- Messenger Chat Plugin Code -->
|
|
<div id="fb-root"></div>
|
|
<!-- Your Chat Plugin code -->
|
|
<div id="fb-customer-chat" class="fb-customerchat">
|
|
</div>
|
|
<script>
|
|
var chatbox = document.getElementById('fb-customer-chat');
|
|
chatbox.setAttribute("page_id", "127749977407253");
|
|
chatbox.setAttribute("attribution", "biz_inbox");
|
|
</script>
|
|
<!-- Your SDK code -->
|
|
<script>
|
|
window.fbAsyncInit = function() {
|
|
FB.init({
|
|
xfbml : true,
|
|
version : 'v18.0'
|
|
});
|
|
};
|
|
(function(d, s, id) {
|
|
var js, fjs = d.getElementsByTagName(s)[0];
|
|
if (d.getElementById(id)) return;
|
|
js = d.createElement(s); js.id = id;
|
|
js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js';
|
|
fjs.parentNode.insertBefore(js, fjs);
|
|
}(document, 'script', 'facebook-jssdk'));
|
|
</script>
|
|
|
|
<!-- Toastr-->
|
|
|
|
|
|
<!-- Responsive -->
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
|
|
@stack("css")
|
|
<?php echo SITEVARS->meta_pixel_code; ?>
|
|
|
|
{!!(SITEVARS->meta_pixel_code)?SITEVARS->meta_pixel_code:""!!}
|
|
</head>
|
|
|
|
|
|
<body class="hidden-bar-wrapper">
|
|
<div class="sbuttons">
|
|
<!-- <a href="https://www.tiktok.com/@wri_education_ktm" target="_blank" class="sbutton tiktok" tooltip="Tiktok"><i class="fab fa-tiktok"></i></a> -->
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- Main Header-->
|
|
@include(env("CLIENT_PATH").".partials.header")
|
|
|
|
|
|
@yield("content")
|
|
|
|
|
|
<!-- End News Section -->
|
|
@include(env("CLIENT_PATH").".partials.footer")
|
|
|
|
|
|
|
|
<script src="{!! template('js/jquery.min.js') !!}"></script>
|
|
|
|
<script src="{!! template('js/bootstrap.min.js') !!}"></script>
|
|
<script src="{!! template('js/jquery.scrollTo-min.js') !!}"></script>
|
|
<script src="{!! template('js/jquery.magnific-popup.min.js') !!}"></script>
|
|
<script src="{!! template('js/jquery.nav.js') !!}"></script>
|
|
<script src="{!! template('js/wow.js') !!}"></script>
|
|
<script src="{!! template('js/plugins.js') !!}"></script>
|
|
<script src="{!! template('js/custom.js') !!}"></script>
|
|
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
|
|
|
@stack("js")
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|