v0.2.0
This commit is contained in:
7
resources/routes/router.php
Normal file
7
resources/routes/router.php
Normal 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
16
resources/routes/web.php
Normal 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);
|
0
resources/views/consultas.blade.php
Normal file
0
resources/views/consultas.blade.php
Normal file
0
resources/views/contacto.blade.php
Normal file
0
resources/views/contacto.blade.php
Normal file
9
resources/views/home.blade.php
Normal file
9
resources/views/home.blade.php
Normal 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
|
28
resources/views/home/banner.blade.php
Normal file
28
resources/views/home/banner.blade.php
Normal file
@ -0,0 +1,28 @@
|
||||
<div class="banner">
|
||||
<div class="mensaje">
|
||||
<p>
|
||||
<strong>
|
||||
5° NOTARÍ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
|
1
resources/views/home/horario.blade.php
Normal file
1
resources/views/home/horario.blade.php
Normal file
@ -0,0 +1 @@
|
||||
Horario
|
45
resources/views/home/links.blade.php
Normal file
45
resources/views/home/links.blade.php
Normal 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>
|
11
resources/views/home/numero.blade.php
Normal file
11
resources/views/home/numero.blade.php
Normal 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ÚMERO DE ATENCIÓN ONLINE
|
||||
<br />
|
||||
<img src="{{$urls->assets->images}}/logo_play_store.png" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
37
resources/views/home/suplente.blade.php
Normal file
37
resources/views/home/suplente.blade.php
Normal 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Í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>
|
8
resources/views/layout/base.blade.php
Normal file
8
resources/views/layout/base.blade.php
Normal file
@ -0,0 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="es">
|
||||
@include('layout.head')
|
||||
<body>
|
||||
@include('layout.header')
|
||||
@yield('page_content')
|
||||
@include('layout.footer')
|
||||
</body>
|
2
resources/views/layout/footer.blade.php
Normal file
2
resources/views/layout/footer.blade.php
Normal file
@ -0,0 +1,2 @@
|
||||
<footer></footer>
|
||||
@include('layout.scripts')
|
8
resources/views/layout/head.blade.php
Normal file
8
resources/views/layout/head.blade.php
Normal file
@ -0,0 +1,8 @@
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>
|
||||
Notaría Patricio Raby
|
||||
@yield('page_title')
|
||||
</title>
|
||||
@include('layout.styles')
|
||||
</head>
|
21
resources/views/layout/header.blade.php
Normal file
21
resources/views/layout/header.blade.php
Normal file
@ -0,0 +1,21 @@
|
||||
<header>
|
||||
<nav class="ui menu dark-blue inverted">
|
||||
<a class="left aligned item" href="{{$urls->base}}">
|
||||
NOTARÍA RABY
|
||||
</a>
|
||||
<div class="right menu">
|
||||
<a class="item" href="{{$urls->base}}/notaria">
|
||||
NOTARÍ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>
|
7
resources/views/layout/scripts.blade.php
Normal file
7
resources/views/layout/scripts.blade.php
Normal 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')
|
18
resources/views/layout/styles.blade.php
Normal file
18
resources/views/layout/styles.blade.php
Normal 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')
|
0
resources/views/servicios.blade.php
Normal file
0
resources/views/servicios.blade.php
Normal file
Reference in New Issue
Block a user