<!DOCTYPE html>
<html lang="{{ app.request.locale }}" xml:lang="{{ app.request.locale }}">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta name="description" content="Zikula Aplication Framework">
        <meta name="author" content="Zikula Development Team">
        <meta name="generator" content="Zikula Installer -- https://ziku.la" />
        <meta http-equiv="X-UA-Compatible" content="chrome=1" />
        <title>{% block title 'Zikula Core Installer'|trans %}</title>

        {# always load bootstrap #}
        <link rel="stylesheet" href="{{ asset('bootstrap/css/bootstrap.min.css') }}" />
        {# always load font-awesome #}
        <link rel="stylesheet" href="{{ asset('font-awesome/css/all.min.css') }}" />
        {# allow child templates to load additional stylesheets #}
        {% block stylesheets '' %}

        {# always load jquery and bootstrap #}
        <script src="{{ asset('jquery/jquery.min.js') }}"></script>
        <script src="{{ asset('bootstrap/js/bootstrap.min.js') }}"></script>
        <script src="{{ asset('bundles/zikulacoreinstaller/js/common.js') }}"></script>
        {# allow child templates to load additional scripts #}
        {% block javascripts '' %}

        {# allow child templates to add items to head #}
        {% block head '' %}
    </head>
    <body>
        {% block body '' %}
    </body>
</html>
