Create app.blade.php
This commit is contained in:
51
resources/views/app.blade.php
Normal file
51
resources/views/app.blade.php
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
<!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: "Mvaamu";
|
||||||
|
src: url("/fonts/mv-aammu-fk.ttf");
|
||||||
|
}
|
||||||
|
.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">
|
||||||
|
<router-view></router-view>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
@include('partials.footer')
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<script src="/js/app.js"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user