Raffales-LMS/resources/views/bibform/welcome.blade.php
2024-04-16 15:43:24 +05:45

54 lines
1.3 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 -->
<!-- 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">
<link rel="stylesheet" href="{!! template('css/bootstrap.min.css')!!}">
<link rel="stylesheet" href="{!! template('css/bootstrap-icons.css')!!}">
<link rel="stylesheet" href="css/normalize.css')!!}">
<link rel="stylesheet" href="{!! template('style.css')!!}">
</head>
@stack("css")
<?php echo SITEVARS->meta_pixel_code; ?>
</head>
<body class="hidden-bar-wrapper">
<!-- Main Header-->
@include(env("CLIENT_PATH").".partials.header")
<main class="main-section" style="background-image: url('{{template('img/bg.jpg')}}');">
@yield("content")
</main>
<!-- End News Section -->
@include(env("CLIENT_PATH").".partials.footer")
@stack("js")
</body>
</html>