|
@@ -1,40 +1,40 @@
|
|
<!DOCTYPE html>
|
|
<!DOCTYPE html>
|
|
-<html lang="en">
|
|
|
|
- <head>
|
|
|
|
- <meta charset="utf-8">
|
|
|
|
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
- <meta name="description" content="">
|
|
|
|
- <meta name="author" content="">
|
|
|
|
- <link rel="icon" href="../../favicon.ico">
|
|
|
|
|
|
+<html lang="{{ app()->getLocale() }}">
|
|
|
|
+<head>
|
|
|
|
+ <meta charset="utf-8">
|
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
+ <meta name="description" content="">
|
|
|
|
+ <meta name="author" content="">
|
|
|
|
+ <link rel="icon" href="../../favicon.ico">
|
|
|
|
|
|
- <title>Blog Template for Bootstrap</title>
|
|
|
|
|
|
+ <title>Blog Template for Bootstrap</title>
|
|
|
|
|
|
|
|
|
|
- <!-- Bootstrap core CSS -->
|
|
|
|
- <link rel="stylesheet" href="/css/bootstrap.min.css" />
|
|
|
|
|
|
+ <!-- Bootstrap core CSS -->
|
|
|
|
+ <link rel="stylesheet" href="/css/bootstrap.min.css" />
|
|
|
|
|
|
- <!-- Custom styles for this template -->
|
|
|
|
- <link rel="stylesheet" href="/css/app.css" />
|
|
|
|
- </head>
|
|
|
|
|
|
+ <!-- Custom styles for this template -->
|
|
|
|
+ <link rel="stylesheet" href="/css/app.css" />
|
|
|
|
+</head>
|
|
|
|
+<body>
|
|
|
|
+ @include('layouts.nav')
|
|
|
|
+ @include('layouts.header')
|
|
|
|
|
|
- <body>
|
|
|
|
- @include('layouts.nav')
|
|
|
|
- @include('layouts.header')
|
|
|
|
|
|
+ <div class="container" id="app">
|
|
|
|
|
|
- <div class="container" id="app">
|
|
|
|
|
|
+ <div class="row">
|
|
|
|
|
|
- <div class="row">
|
|
|
|
|
|
+ @yield('content')
|
|
|
|
|
|
- @yield('content')
|
|
|
|
|
|
+ @include('layouts.sidebar')
|
|
|
|
+ </div><!-- /.row -->
|
|
|
|
|
|
- @include('layouts.sidebar')
|
|
|
|
- </div><!-- /.row -->
|
|
|
|
|
|
+ </div><!-- /.container -->
|
|
|
|
|
|
- </div><!-- /.container -->
|
|
|
|
-
|
|
|
|
- @include('layouts.footer')
|
|
|
|
- <!-- script src="/js/manifest.js"></script -->
|
|
|
|
- <!-- script src="/js/vendor.js"></script -->
|
|
|
|
- <script src="/js/app.js"></script>
|
|
|
|
- </body>
|
|
|
|
|
|
+ @include('layouts.footer')
|
|
|
|
+ <!-- script src="/js/manifest.js"></script -->
|
|
|
|
+ <!-- script src="/js/vendor.js"></script -->
|
|
|
|
+ <script src="/js/app.js"></script>
|
|
|
|
+</body>
|
|
</html>
|
|
</html>
|