<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
{% block meta %}
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="{% block description %}{% endblock %}">
<meta name="robots" content="noindex,nofollow">
{% endblock %}
<title>{% block title %}OP-BUCE{% endblock %}</title>
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('build/app.css') }}">
{% endblock %}
{% set iconsDir = 'build/images/icons-fced550635eb06e258e264fc523dac08/' %}
<link rel="icon" type="image/x-icon" href="{{ asset(iconsDir ~ 'favicon.ico') }}" />
<link rel="icon" type="image/png" href="{{ asset(iconsDir ~ 'favicon-16x16.png') }}" sizes="16x16">
<link rel="icon" type="image/png" href="{{ asset(iconsDir ~ 'favicon-32x32.png') }}" sizes="32x32">
<link rel="apple-touch-icon" href="{{ asset(iconsDir ~ 'touch-icon-iphone.png') }}">
<link rel="apple-touch-icon" sizes="152x152" href="{{ asset(iconsDir ~ 'apple-touch-icon-152x152.png') }}">
<link rel="apple-touch-icon" sizes="167x167" href="{{ asset(iconsDir ~ 'apple-touch-icon-167x167.png') }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset(iconsDir ~ 'apple-touch-icon-180x180.png') }}">
<link rel="manifest" href="{{ asset(iconsDir ~ 'manifest.json') }}">
</head>
<body{% block bodyoptions %}{% endblock %}>
{% block body %}{% endblock %}
{% block footer %}
<footer class="container-fluid">
<div class="row mt-5 pt-2 border-top">
{% block footermenu %}{% endblock %}
{% block version %}<div class="col text-right"><small class="text-muted text-uppercase">V {{ shivas_app_version }}</small></div>{% endblock %}
</div>
</footer>
{% endblock %}
{% block modal %}{% endblock %}
{% block javascripts %}
<script src="{{ asset('build/runtime.js') }}"></script>
<script src="{{ asset('public/js/underscore-min.js') }}"></script>
<script src="{{ asset('build/app.js') }}"></script>
{% endblock %}
</body>
</html>