<!DOCTYPE html><html lang="en"><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title> {% block title %} In The Traveler's Pocket {% endblock %} </title> <link rel="icon" type="image/x-icon" href="{{ asset('static/img/ittp-logo.png') }}"> {% block styles %} <!-- Google Font: Source Sans Pro --> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback"> <!-- Font Awesome Icons --> <link rel="stylesheet" href="{{ asset('template/plugins/fontawesome-free/css/all.min.css') }}"> <!-- IonIcons --> <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"> <!-- Theme style --> <link rel="stylesheet" href="{{ asset('template/dist/css/adminlte.min.css') }}"> {{ encore_entry_link_tags('common') }} {{ encore_entry_link_tags('footer') }} {{ encore_entry_link_tags('header') }} {% endblock %} {% block css %} {% endblock %}</head><!--`body` tag options: Apply one or more of the following classes to to the body tag to get the desired effect * sidebar-collapse * sidebar-mini--><body class="{% block body_class %}hold-transition sidebar-mini{% endblock %}">{% block body %} <div class="wrapper"> {% block loader %} <div id="spinner"> <img src="{{ asset('spinner.gif') }}"> </div> {% endblock %} <!-- Navbar --> <nav class="main-header navbar navbar-expand navbar-white navbar-light"> <!-- Left navbar links --> {% block navbar %} {{ render(controller( 'App\\Controller\\IndexController::topbar' )) }} {# {% include 'structure/_topbar.html.twig' %} #} {% endblock %} </nav> <!-- /.navbar --> {% block sidebar %} <!-- Main Sidebar Container --> {{ render(controller( 'App\\Controller\\IndexController::sidebar' )) }} {% endblock %} <!-- Content Wrapper. Contains page content --> {% block content_wrapper %} <div class="content-wrapper"> <!-- Content Header (Page header) --> <div class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-sm-6"> <h1 class="m-0">{% block content_title %}Dashboard{% endblock %}</h1> </div><!-- /.col --> </div><!-- /.row --> </div><!-- /.container-fluid --> </div> <!-- /.content-header --> <!-- Main content --> <div class="content"> {% for flash_message in app.session.flashbag.get('success') %} <div class="flash-notice"> <div class="alert alert-success alert-dismissible"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true"> × </button> <h5><i class="icon fas fa-check"></i> {{ 'app.enterprise.success' | trans }}</h5> {{ flash_message }} </div> </div> {% endfor %} {% for flash_message in app.session.flashbag.get('error') %} <div class="flash-notice"> <div class="alert alert-danger alert-dismissible"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true"> × </button> <h5><i class="icon fas fa-ban"></i> {{ 'app.enterprise.error' | trans }}</h5> {{ flash_message }} </div> </div> {% endfor %} {% for flash_message in app.session.flashbag.get('warning') %} <div class="flash-notice"> <div class="alert alert-warning alert-dismissible"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true"> × </button> <h5><i class="icon fas fa-ban"></i> {{ 'app.enterprise.error' | trans }}</h5> {{ flash_message }} </div> </div> {% endfor %} {% block content %} {% endblock %} </div> <!-- /.content --> </div> {% endblock %} <!-- /.content-wrapper --> <!-- Control Sidebar --> <aside class="control-sidebar control-sidebar-dark"> <!-- Control sidebar content goes here --> </aside> <!-- /.control-sidebar --> {% block footer %} {{ render(controller( 'App\\Controller\\IndexController::footer' )) }} {% endblock %} </div> <!-- ./wrapper --> <!-- REQUIRED SCRIPTS -->{% block javascripts %} <!-- jQuery --> <script src="{{ asset('template/plugins/jquery/jquery.min.js') }}"></script> <!-- Bootstrap --> <script src="{{ asset('template/plugins/bootstrap/js/bootstrap.bundle.js') }}"></script> <!-- AdminLTE --> <script src="{{ asset('template/dist/js/adminlte.js') }}"></script> {{ encore_entry_script_tags('common') }} {{ encore_entry_script_tags('footer') }} {{ encore_entry_script_tags('header') }}{% endblock javascripts %} {% block js %} {% endblock js %}{% endblock body %}</body></html>