2017-11-21 23:12:31 -05:00
|
|
|
@extends('templates.base')
|
2016-01-26 23:20:08 -05:00
|
|
|
|
|
|
|
@section('page-includes')
|
2016-06-01 22:59:52 -04:00
|
|
|
<script src="/js/lib.js?version={{ env('CACHE_BUST') }}"></script>
|
|
|
|
<link rel="stylesheet" href="/css/app.css?version={{ env('CACHE_BUST') }}" />
|
2018-04-15 21:05:42 -04:00
|
|
|
@include('elements.variables')
|
2016-01-26 23:20:08 -05:00
|
|
|
@endsection
|
|
|
|
|
2017-11-21 23:12:31 -05:00
|
|
|
@section('page-content')
|
2018-04-15 21:05:42 -04:00
|
|
|
<nav-component></nav-component>
|
2017-11-21 23:12:31 -05:00
|
|
|
|
2018-03-06 21:53:11 -05:00
|
|
|
<div class="flex-wrapper">
|
|
|
|
<div class="page-container">
|
2018-04-15 21:05:42 -04:00
|
|
|
<div id="router-view" class="main-content">
|
|
|
|
<router-view></router-view>
|
2018-03-06 21:53:11 -05:00
|
|
|
</div>
|
2016-01-26 23:20:08 -05:00
|
|
|
|
2018-04-15 21:05:42 -04:00
|
|
|
<footer-component></footer-component>
|
2018-03-06 21:53:11 -05:00
|
|
|
</div>
|
2017-11-21 23:12:31 -05:00
|
|
|
</div>
|
2016-01-26 23:20:08 -05:00
|
|
|
@endsection
|
2018-04-15 21:05:42 -04:00
|
|
|
|
|
|
|
@section('page-bottom')
|
|
|
|
<script src="/js/app.js?version={{ env('CACHE_BUST') }}"></script>
|
|
|
|
@endsection
|