Version nueva
This commit is contained in:
5
resources/views/layout/base.blade.php
Normal file
5
resources/views/layout/base.blade.php
Normal file
@ -0,0 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{$page_language}}">
|
||||
@include('layout.head')
|
||||
@include('layout.body')
|
||||
</html>
|
5
resources/views/layout/body.blade.php
Normal file
5
resources/views/layout/body.blade.php
Normal file
@ -0,0 +1,5 @@
|
||||
<body>
|
||||
@yield('page_content')
|
||||
|
||||
@include('layout.scripts')
|
||||
</body>
|
6
resources/views/layout/head.blade.php
Normal file
6
resources/views/layout/head.blade.php
Normal file
@ -0,0 +1,6 @@
|
||||
<head>
|
||||
<meta charset="utf8" />
|
||||
<title>ProVM</title>
|
||||
<meta name="description" content="Web developers" />
|
||||
<link rel="stylesheet" href="{{$urls->styles}}/home.css" />
|
||||
</head>
|
4
resources/views/layout/scripts.blade.php
Normal file
4
resources/views/layout/scripts.blade.php
Normal file
@ -0,0 +1,4 @@
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg==" crossorigin="anonymous"></script>
|
||||
<script type="text/javascript" src="{{$urls->scripts}}/build.js"></script>
|
||||
|
||||
@stack('scripts')
|
Reference in New Issue
Block a user