proxitok/templates/layouts/default.latte
2022-11-04 18:02:57 +01:00

21 lines
396 B
Plaintext

<!DOCTYPE html>
<html lang="en">
{include '../components/head.latte'}
<body>
{include '../components/navbar.latte'}
<section class="hero is-primary">
<div class="hero-body">
<div class="container has-text-centered">
{block header}{/block}
</div>
</div>
</section>
<section class="section">
{block content}{/block}
</section>
{block extra}{/block}
</body>
</html>