PHP Classes

File: resources/views/layouts/app.blade.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   Heloise Laravel Blog Package   resources/views/layouts/app.blade.php   Download  
File: resources/views/layouts/app.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Heloise Laravel Blog Package
Simple blog system with comments and RSS feed
Author: By
Last change:
Date: 7 months ago
Size: 1,049 bytes
 

Contents

Class file image Download
<!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>@yield('title', config('app.name', 'My Blog'))</title>

    <script src="{{ asset('js/app.js') }}" defer></script>

    <link href="https://fonts.googleapis.com/css?family=Raleway:300,400,600" rel="stylesheet">
    <link href="{{ asset('/css/app.css') }}" rel="stylesheet">
    <link rel="alternate" type="application/rss+xml" title="Latest blog posts" href="{{ route('post.feed.index') }}" />
</head>
<body>
    <header>
        @include('partials._navbar')
    </header>

    <div class="row flex-spaces flex-center">
        <div class="col col-md-10 child-borders">
            @include('partials._alert')
            @yield ('content')
        </div>
    </div>
    @include('partials._footer')

    <script src="{{ mix('/js/app.js') }}"></script>
</body>
</html>