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,7 @@
<?php
$folder = implode(DIRECTORY_SEPARATOR, [
__DIR__,
$_ENV
]);
$filename = $_ENV . '.php';
include_once $filename;

16
resources/routes/web.php Normal file
View File

@ -0,0 +1,16 @@
<?php
use ProVM\NotariaRaby\Common\Controller\Web\Home;
$folder = implode(DIRECTORY_SEPARATOR, [
__DIR__,
'web'
]);
$files = new DirectoryIterator($folder);
foreach ($files as $file) {
if ($file->isDir()) {
continue;
}
include_once $file->getRealPath();
}
$app->get('/', Home::class);

View File

View File

View File

@ -0,0 +1,9 @@
@extends('layout.base')
@section('page_content')
@include('home.banner')
@include('home.suplente')
@include('home.numero')
@include('home.links')
@include('home.horario')
@endsection

View File

@ -0,0 +1,28 @@
<div class="banner">
<div class="mensaje">
<p>
<strong>
5&deg; NOTAR&Iacute;A DE SANTIAGO
<br />
PATRICIO RABY BENAVENTE
</strong>
</p>
<p>
Gertrudis Echenique 30, of. 32, El Golf
<br />
<img class="ui icon" src="{{$urls->assets->images}}/logo_metro_blanco.png" />
Metro Alcantara
</p>
</div>
</div>
@push('styles')
<style type="text/css">
.banner {
background-image: url('{{$urls->assets->images}}/img_banner.png')
}
.banner .mensaje {
padding: 3em;
}
</style>
@endpush

View File

@ -0,0 +1 @@
Horario

View File

@ -0,0 +1,45 @@
<div class="ui grid">
<div class="three columns row">
<div class="row">
<div class="center aligned column">
<table class="ui table">
<thead>
<tr>
<th>DOCUMENTOS ONLINE</th>
</tr>
</thead>
<tbody>
<tr>
<td>Autorizaciones</td>
</tr>
<tr>
<td>Declaraciones</td>
</tr>
<tr>
<td>Certificados</td>
</tr>
<tr>
<td>Poderes</td>
</tr>
<tr>
<td>Contratos</td>
</tr>
<tr>
<td>Otros</td>
</tr>
</tbody>
</table>
</div>
<div class="column">
<table class="ui table">
<thead>
<tr>
<th>LINKS DE CONSULTA</th>
</tr>
</thead>
</table>
</div>
<div class="column"></div>
</div>
</div>
</div>

View File

@ -0,0 +1,11 @@
<div class="ui center aligned grid">
<div class="row">
<div class="three wide column">
<div class="ui inverted black center aligned segment">
N&Uacute;MERO DE ATENCI&Oacute;N ONLINE
<br />
<img src="{{$urls->assets->images}}/logo_play_store.png" />
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,37 @@
<div class="ui grid">
<div class="row">
<div class="five wide column" style="padding: 2em;">
<h4>
Horario lunes a viernes
<br />
9:30 - 13:30 | 15:30 - 18:00
</h4>
<p>
La atención dentro del horario, puede verse
afectada circunstancialmente y sin previo
aviso, por encontrarse el notario cumpliendo
funciones fuera de la Notaría.
</p>
<button class="ui inverted dark-blue button">
NOTAR&Iacute;A DE TURNO
</button>
</div>
<div class="nine wide column" style="background-image: url('{{$urls->assets->images}}/img_suplente.png')">
<div class="ui center aligned grid">
<div class="row">
<div class="four wide column">
<div class="ui center aligned segment">
<h4 style="padding: 0; margin: 0;">NOTARIO SUPLENTE</h4>
<p style="font-size: 8pt;">DEL 1 DE ABRIL AL 15 DE MAYO</p>
<p class="center aligned">
MARIA VIRGINIA
<br />
WIELANDT COVARRUBIAS
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

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')

View File