20 lines
660 B
Plaintext
20 lines
660 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
<title>{ifset title}{include title|stripHtml} | {/ifset}Nette Web</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div n:foreach="$flashes as $flash" n:class="flash, $flash->type, alert, alert . '-' . $flash->type">{$flash->message}</div>
|
|
|
|
{include content}
|
|
|
|
{block scripts}
|
|
<script src="https://unpkg.com/nette-forms@3"></script>
|
|
{/block}
|
|
</body>
|
|
</html>
|