67 lines
1.3 KiB
PHP
67 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Baraveli News</title>
|
|
|
|
<link rel="stylesheet" href="/css/app.css">
|
|
<style>
|
|
@font-face {
|
|
font-family: "mvtyper";
|
|
src: url("/fonts/mvtyper.ttf");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "MvFaseyha";
|
|
src: url("/fonts/faseyha.otf");
|
|
}
|
|
|
|
|
|
@font-face {
|
|
font-family: "Mvaamu";
|
|
src: url("/fonts/mv-aammu-fk.ttf");
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Mvtyperbold";
|
|
src: url("/fonts/mvtypebold.ttf");
|
|
}
|
|
|
|
.Mvtyperbold {
|
|
font-family: "Mvtyperbold";
|
|
}
|
|
|
|
.MvAamu {
|
|
font-family: "Mvaamu";
|
|
}
|
|
|
|
.MvTyper {
|
|
font-family: "mvtyper";
|
|
}
|
|
</style>
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
|
|
<div class="container mx-auto">
|
|
@include('partials.header')
|
|
|
|
<main class="mt-12">
|
|
@yield('content')
|
|
</main>
|
|
|
|
@include('partials.footer')
|
|
</div>
|
|
|
|
|
|
</div>
|
|
<script src="/js/app.js"></script>
|
|
</body>
|
|
|
|
</html> |