mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-10 03:26:38 -05:00
21 lines
585 B
PHP
21 lines
585 B
PHP
@extends('templates.base')
|
|
|
|
@section('page-includes')
|
|
<script src="/js/lib.js?version={{ env('CACHE_BUST') }}"></script>
|
|
<script src="/js/app.js?version={{ env('CACHE_BUST') }}"></script>
|
|
<link rel="stylesheet" href="/css/app.css?version={{ env('CACHE_BUST') }}" />
|
|
@endsection
|
|
|
|
@section('page-content')
|
|
@include('sections.nav')
|
|
|
|
<div class="flex-wrapper">
|
|
<div class="page-container">
|
|
<div class="main-content">
|
|
@yield('content')
|
|
</div>
|
|
|
|
@include('sections.footer')
|
|
</div>
|
|
</div>
|
|
@endsection
|