24 lines
447 B
Plaintext
24 lines
447 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{include '../components/head.latte'}
|
|
|
|
<body>
|
|
<section class="hero is-fullheight">
|
|
<div class="hero-head">
|
|
{include '../components/navbar.latte'}
|
|
</div>
|
|
<div class="hero-body">
|
|
<div class="container has-text-centered">
|
|
{block content}{/block}
|
|
</div>
|
|
</div>
|
|
<div class="hero-foot">
|
|
{include '../components/footer.latte'}
|
|
</div>
|
|
</section>
|
|
{block extra}{/block}
|
|
</body>
|
|
|
|
</html>
|