Last active
July 4, 2017 06:13
-
-
Save janikvonrotz/68f4da6bc6a4374d9f9b to your computer and use it in GitHub Desktop.
Laravel default templates
#Laravel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta name="description" content="<Project Description>"> | |
<meta name="author" content="Janik von Rotz (http://janikvonrotz.ch)"> | |
<title>{{$title or '<Project Name>'}}</title> | |
<link rel="stylesheet" href="{{ URL::asset('all.min.css') }}"> | |
@if (App::environment('local')) | |
<script src="//localhost:35729/livereload.js"></script> | |
@endif | |
</head> | |
<body> | |
<div class="container"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@include('default.header') | |
@include('default.navigation') | |
@yield('content') | |
@include('default.footer') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment