mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
15 lines
420 B
PHP
15 lines
420 B
PHP
@extends('layouts.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-top')
|
|
@include('elements.nav')
|
|
@endsection
|
|
|
|
@section('page-bottom')
|
|
@include('elements.footer')
|
|
@endsection
|