v0.1.0
This commit is contained in:
4
frontend/resources/views/layout/body/footer.blade.php
Normal file
4
frontend/resources/views/layout/body/footer.blade.php
Normal file
@ -0,0 +1,4 @@
|
||||
<footer>
|
||||
|
||||
</footer>
|
||||
@include('layout.body.scripts')
|
6
frontend/resources/views/layout/body/header.blade.php
Normal file
6
frontend/resources/views/layout/body/header.blade.php
Normal file
@ -0,0 +1,6 @@
|
||||
<header class="ui top attached menu">
|
||||
<h1 class="brand item">
|
||||
<a href="{{$urls->base}}">Cryptos</a>
|
||||
</h1>
|
||||
<a class="item" href="{{$urls->base}}/coins">Monedas</a>
|
||||
</header>
|
15
frontend/resources/views/layout/body/scripts.blade.php
Normal file
15
frontend/resources/views/layout/body/scripts.blade.php
Normal file
@ -0,0 +1,15 @@
|
||||
@if (isset($page_scripts))
|
||||
@foreach ($page_scripts as $script)
|
||||
@if (isset($script->url))
|
||||
<script src="{{$script->url}}"></script>
|
||||
@elseif (isset($script->full))
|
||||
{!!$script->full!!}
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
|
||||
@stack('page_scripts')
|
||||
|
||||
<script type="text/javascript">
|
||||
@stack('global_script')
|
||||
</script>
|
Reference in New Issue
Block a user