Last active
January 21, 2016 16:16
-
-
Save tannerhodges/c2ffe0ad2b70f89f99c0 to your computer and use it in GitHub Desktop.
Example Laravel Views
This file contains hidden or 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
@extends('layouts.site') | |
@section('content') | |
<section> | |
<h1>Heading</h1> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p> | |
<a href="#">Go to Page</a> | |
</section> | |
@endsection |
This file contains hidden or 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> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Example Laravel Layout</title> | |
<link rel="stylesheet" href="{{ asset_url('css/app.css') }}"> | |
@yield('styles') | |
</head> | |
<body> | |
@include('partials.header') | |
<main role="main"> | |
@yield('content') | |
</main> | |
@include('partials.footer') | |
<script src="{{ asset_url('js/app.js') }}"></script> | |
@yield('scripts') | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment