This commit is contained in:
2021-06-28 23:15:13 -04:00
parent 0061a3d920
commit f4a8db56ff
93 changed files with 2422 additions and 0 deletions

View File

@ -0,0 +1,5 @@
<!DOCTYPE html>
<html lang="es">
@include('layout.head')
@include('layout.body')
</html>

View File

@ -0,0 +1,16 @@
<body>
@include('layout.body.header')
<div class="ui attached segment" id="page_content">
@hasSection('page_sidebar')
<div class="ui visible sidebar inverted vertical labeled icon menu" id="page_sidebar">
@yield('page_sidebar')
</div>
<div class="pusher">
@endif
@yield('page_content')
@hasSection('page_sidebar')
</div>
@endif
</div>
@include('layout.body.footer')
</body>

View File

@ -0,0 +1,4 @@
<footer>
</footer>
@include('layout.body.scripts')

View 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>

View 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>

View File

@ -0,0 +1,11 @@
<head>
<meta charset="utf8" />
<title>
Crypto
@hasSection('page_title')
-
@yield('page_title')
@endif
</title>
@include('layout.head.styles')
</head>

View File

@ -0,0 +1,11 @@
@if (isset($page_styles))
@foreach ($page_styles as $style)
@if (isset($style->url))
<link href="{{$style->url}}" />
@elseif (isset($style->link))
{!!$style->link!!}
@endif
@endforeach
@endif
@stack('page_styles')