<!DOCTYPE html>
<html lang="{{ locale }}">
<head>
{% block meta %}
<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="author" content="Michael Hack Software e.K.">
<meta name="csrf-token" content="{{ csrf_token('main') }}">
{% endblock %}
{% block title %}
<title>
{%- if page_title and page_showtitle %}{{ page_title | striptags }} - {% endif -%}
{{- env('APP_TITLE') -}}
</title>
{% endblock %}
{% block stylesheets %}{% endblock %}
</head>
{% block body %}
<body>
{% block main %}
<h1>{{ page_title }}</h1>
{% block content %}{% endblock %}
{% endblock %}
{% block scripts %}{% endblock %}
</body>
{% endblock %}
</html>