Files
operadores/ui/resources/views/layout/base.blade.php

32 lines
929 B
PHP
Raw Normal View History

2021-08-10 15:52:03 -04:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>
@if (isset($titulo))
{{$titulo}} -
@endif
Incoviba S. A.</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.7.8/semantic.min.css" />
2021-08-16 22:13:15 -04:00
<link rel="stylesheet" type="text/css" href="{{$urls->base}}/css/app.css" />
<link rel="stylesheet" type="text/css" href="{{$urls->base}}/css/custom.css" />
<link rel="icon" type="image/png" href="{{$urls->base}}/images/Isotipo 32.png" />
<script type="text/javascript" src="{{$urls->base}}/js/app.js"></script>
2021-08-10 15:52:03 -04:00
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.7.8/semantic.min.js"></script>
@stack('styles')
</head>
<body>
@include('layout.header')
<div class="container">
<div class="row">
<div class="col-md-12">
@yield('content')
</div>
</div>
</div>
@include('layout.footer')
@stack('scripts')
</body>
</html>