<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
{% block stylesheets %}
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="{{ asset('/css/style.css') }}">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Pacifico&family=Varela+Round&display=swap" rel="stylesheet">
{% endblock %}
{% block javascripts %}
{% endblock %}
</head>
<body>
{% block header %}
{{ render(controller(
'App\\Controller\\MainController::header', {max: 1}
)) }}
{% endblock %}
{% block body %}
{% endblock %}
{% block footer %}
{{ render(controller(
'App\\Controller\\MainController::footer', {max: 1}
)) }}
{% endblock %}
</body>
</html>