15 lines
352 B
PHP
15 lines
352 B
PHP
<?php
|
|
/** @var \App\App $app */
|
|
$app = app();
|
|
?>
|
|
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title><?= htmlspecialchars(t('common.title'), ENT_QUOTES) ?></title>
|
|
<?php asset_styles(); ?>
|
|
<?php asset_scripts('header'); ?>
|
|
</head>
|
|
<body class="app-body">
|