proxitok/templates/layouts/default.latte

21 lines
396 B
Plaintext
Raw Permalink Normal View History

2022-01-25 13:08:31 +00:00
<!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}
2022-01-28 14:54:09 +00:00
</body>
2022-01-25 13:08:31 +00:00
</html>