Files
nette-vite/app/Presenters/templates/@layout.latte
2022-02-15 07:33:00 +01:00

30 lines
693 B
Plaintext
Executable File

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>{ifset title}{include title|stripHtml} | {/ifset}Nette Web</title>
{if $vite->isEnabled()}
<script type="module" src="{='@vite/client'|asset}"></script>
{else}
{foreach $vite->getCssAssets('src/scripts/main.js') as $path}
<link rel="stylesheet" href="{$path}">
{/foreach}
{/if}
<script src="{='src/scripts/main.js'|asset}" type="module"></script>
</head>
<body data-controller="body" class="bg-blue-100">
<div n:foreach="$flashes as $flash" n:class="flash, $flash->type">{$flash->message}</div>
{include content}
{block scripts}
{/block}
</body>
</html>