<!DOCTYPE html> 
<html lang="{{ app.request.locale }}"> 
    <head> 
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
        <title>{% block title %}Website{% endblock %}</title> 
        <meta name="description" content="{% block description %}Web{% endblock %}"> 
         
        <script src="{{ asset('assets/vendor/jquery/jquery.min.js') }}"></script> 
        <script src="{{ asset('assets/vendor/jquery.cycle.all.js') }}"></script> 
        <script language="JavaScript" src="{{ asset('assets/js/am.js') }}"></script> 
 
        <!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css"> --> 
        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/5.2.0/flatly/bootstrap.min.css"> 
 
    </head> 
    <body> 
 
    {% for message in app.flashes('notice') %} 
        <div class="flash-notice"> 
            <div class='notice'>{{ message }}</div> 
        </div> 
    {% endfor %} 
    {% for message in app.flashes('error') %} 
        <div class="flash-error"> 
            <div class='error'>{{ message }}</div> 
        </div> 
    {% endfor %} 
 
        <div class="webWrapper"> 
            {% block content %}{% endblock %} 
        </div> 
    </body> 
</html>