UI incompleto
This commit is contained in:
5
ui/resources/views/layout/base.blade.php
Normal file
5
ui/resources/views/layout/base.blade.php
Normal file
@ -0,0 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="es">
|
||||
@include('layout.head')
|
||||
@include('layout.body')
|
||||
</html>
|
5
ui/resources/views/layout/body.blade.php
Normal file
5
ui/resources/views/layout/body.blade.php
Normal file
@ -0,0 +1,5 @@
|
||||
<body>
|
||||
@include('layout.body.header')
|
||||
@yield('page_content')
|
||||
@include('layout.body.footer')
|
||||
</body>
|
4
ui/resources/views/layout/body/footer.blade.php
Normal file
4
ui/resources/views/layout/body/footer.blade.php
Normal file
@ -0,0 +1,4 @@
|
||||
<footer>
|
||||
|
||||
</footer>
|
||||
@include('layout.body.scripts')
|
3
ui/resources/views/layout/body/header.blade.php
Normal file
3
ui/resources/views/layout/body/header.blade.php
Normal file
@ -0,0 +1,3 @@
|
||||
<header>
|
||||
@include('layout.body.menu')
|
||||
</header>
|
5
ui/resources/views/layout/body/menu.blade.php
Normal file
5
ui/resources/views/layout/body/menu.blade.php
Normal file
@ -0,0 +1,5 @@
|
||||
<nav class="ui menu">
|
||||
<a class="item" href="{{$urls->base}}">Inicio</a>
|
||||
@include('layout.body.menu.cuentas')
|
||||
@include('layout.body.menu.categorias')
|
||||
</nav>
|
3
ui/resources/views/layout/body/menu/categorias.blade.php
Normal file
3
ui/resources/views/layout/body/menu/categorias.blade.php
Normal file
@ -0,0 +1,3 @@
|
||||
<a class="item" href="{{$urls->base}}categorias">
|
||||
Categorías
|
||||
</a>
|
3
ui/resources/views/layout/body/menu/cuentas.blade.php
Normal file
3
ui/resources/views/layout/body/menu/cuentas.blade.php
Normal file
@ -0,0 +1,3 @@
|
||||
<a class="item" href="{{$urls->base}}cuentas">
|
||||
Cuentas
|
||||
</a>
|
11
ui/resources/views/layout/body/scripts.blade.php
Normal file
11
ui/resources/views/layout/body/scripts.blade.php
Normal file
@ -0,0 +1,11 @@
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.8.8/semantic.min.js" integrity="sha512-t5mAtfZZmR2gl5LK7WEkJoyHCfyzoy10MlerMGhxsXl3J7uSSNTAW6FK/wvGBC8ua9AFazwMaC0LxsMTMiM5gg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
const _urls = {
|
||||
base: '{{$urls->base}}',
|
||||
api: '{{$urls->api}}'
|
||||
}
|
||||
</script>
|
||||
|
||||
@stack('scripts')
|
5
ui/resources/views/layout/head.blade.php
Normal file
5
ui/resources/views/layout/head.blade.php
Normal file
@ -0,0 +1,5 @@
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Contabilidad</title>
|
||||
@include('layout.head.styles')
|
||||
</head>
|
8
ui/resources/views/layout/head/styles.blade.php
Normal file
8
ui/resources/views/layout/head/styles.blade.php
Normal file
@ -0,0 +1,8 @@
|
||||
<link rel="icon" href="{{$urls->images}}/fund-accounting.png" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.8.8/semantic.min.css" integrity="sha512-pbLYRiE96XJxmJgF8oWBfa9MdKwuXhlV7vgs2LLlapHLXceztfcta0bdeOgA4reIf0WH67ThWzA684JwkM3zfQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.8.8/themes/default/assets/fonts/brand-icons.woff" />
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.8.8/themes/default/assets/fonts/icons.woff" />
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.8.8/themes/default/assets/fonts/outline-icons.woff" />
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.8.8/themes/github/assets/fonts/octicons.woff" />
|
||||
|
||||
@stack('styles')
|
Reference in New Issue
Block a user