Skip to content

Instantly share code, notes, and snippets.

@tannerhodges
Last active January 21, 2016 16:16
Show Gist options
  • Save tannerhodges/c2ffe0ad2b70f89f99c0 to your computer and use it in GitHub Desktop.
Save tannerhodges/c2ffe0ad2b70f89f99c0 to your computer and use it in GitHub Desktop.
Example Laravel Views
@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
<!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