This commit is contained in:
2020-02-27 19:09:54 -03:00
parent 17b62d528e
commit 467fab3716
35 changed files with 478 additions and 0 deletions

View File

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

View File

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

View File

@ -0,0 +1,8 @@
<head>
<meta charset="utf-8" />
<title>
Notar&iacute;a Patricio Raby
@yield('page_title')
</title>
@include('layout.styles')
</head>

View File

@ -0,0 +1,21 @@
<header>
<nav class="ui menu dark-blue inverted">
<a class="left aligned item" href="{{$urls->base}}">
NOTAR&Iacute;A RABY
</a>
<div class="right menu">
<a class="item" href="{{$urls->base}}/notaria">
NOTAR&Iacute;A
</a>
<a class="item" href="{{$urls->base}}/servicios">
SERVICIOS
</a>
<a class="item" href="{{$urls->base}}/consultas">
CONSULTAS
</a>
<a class="item" href="{{$urls->base}}/contacto">
CONTACTO
</a>
</div>
</nav>
</header>

View File

@ -0,0 +1,7 @@
@foreach ($assets as $asset)
@if (isset($asset->script))
<script type="text/javascript" src="{{$asset->script}}"></script>
@endif
@endforeach
@stack('scripts')

View File

@ -0,0 +1,18 @@
<link rel="shortcut icon" type="image/png" href="{{$urls->assets->images}}/favicon.png" />
@foreach ($assets as $asset)
@if (isset($asset->style))
<link rel="stylesheet" type="text/css" href="{{$asset->style}}" />
@endif
@if (isset($asset->fonts))
@foreach ($asset->fonts as $font)
<link rel="stylesheet" href="{{$font}}" />
@endforeach
@endif
@endforeach
<style type="text/css">
.inverted.dark-blue {
background-color: #003662 !important;
}
</style>
@stack('styles')