<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="Containers and Po" />
<meta name="author" content="Solido" />
<title>
{% block title %}
Containers
{% endblock %}
</title>
<link href="{{ asset('theme/dist/css/app.css') }}" rel="stylesheet" />
{% block stylesheets %}
{% endblock %}
{% block javascripts_top %}
{% endblock %}
</head>
<body>
<main class="d-flex w-100">
<div class="container d-flex flex-column">
<div class="row vh-100">
{% block body %}
{% endblock %}
</div>
</div>
</main>
<script src="{{ asset('theme/dist/js/app.js') }}"></script>
{% block javascripts %}
{% endblock %}
</body>
</html>