46 lines
1.5 KiB
PHP
46 lines
1.5 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 -->
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
|
|
|
|
<!-- 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; ?>
|
|
</head>
|
|
|
|
|
|
<body class="hidden-bar-wrapper">
|
|
|
|
|
|
|
|
|
|
<!-- Main Header-->
|
|
@include(env("CLIENT_PATH").".partials.header")
|
|
<div class="container">
|
|
|
|
@yield("content")
|
|
</div>
|
|
<!-- End News Section -->
|
|
@include(env("CLIENT_PATH").".partials.footer")
|
|
<div class="scroll-to-top scroll-to-target" data-target="html"><span class="fa fa-arrow-up"></span></div>
|
|
<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>
|