You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
50 lines
1.5 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Laravel Quickstart - Basic</title>
|
|
|
|
<!-- Fonts -->
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css" rel='stylesheet' type='text/css'>
|
|
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700" rel='stylesheet' type='text/css'>
|
|
|
|
<!-- Styles -->
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
|
|
{{-- <link href="{{ elixir('css/app.css') }}" rel="stylesheet"> --}}
|
|
|
|
<style>
|
|
body {
|
|
font-family: 'Lato';
|
|
}
|
|
|
|
.fa-btn {
|
|
margin-right: 6px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body id="app-layout">
|
|
<nav class="navbar navbar-default">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
|
|
<!-- Branding Image -->
|
|
<a class="navbar-brand" href="{{ url('/') }}">
|
|
Task List
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
</nav>
|
|
|
|
@yield('content')
|
|
|
|
<!-- JavaScripts -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
|
|
{{-- <script src="{{ elixir('js/app.js') }}"></script> --}}
|
|
</body>
|
|
</html>
|