Skip to content

Instantly share code, notes, and snippets.

@themarcusbattle
Created March 7, 2019 22:32
Show Gist options
  • Select an option

  • Save themarcusbattle/65b8ba189cf3d760e5e70b164dd8639a to your computer and use it in GitHub Desktop.

Select an option

Save themarcusbattle/65b8ba189cf3d760e5e70b164dd8639a to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('app.name', 'Laravel') }}</title>
<!-- Scripts -->
<script src="{{ asset('js/app.js') }}" defer></script>
<!-- Fonts -->
<link rel="dns-prefetch" href="//fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet" type="text/css">
<!-- Styles -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
<link href="{{ asset('inc/chameleon/css/chameleon.css') }}" rel="stylesheet">
</head>
<body>
<header class="has-no-padding">
<div class="grid">
<div class="col branding">
<h3>{{ config( 'app.name', 'Laravel' ) }}</h3>
</div>
<div class="col one-third has-text-align-right">
<nav>
<ul class="menu">
<li><a class="nav-link" href="{{ route('login') }}">Login</a></li>
</ul>
</nav>
</div>
</div>
</header>
@yield('content')
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment