oswilno/crates/oswilno-view/templates/main.html

11 lines
424 B
HTML
Raw Normal View History

2023-08-16 08:48:39 +02:00
<main>
2023-08-14 22:23:18 +02:00
{% include "navbar.html" %}
2023-08-16 08:48:39 +02:00
<section id="main-header" class="relative pt-16 pb-32 flex content-center items-center justify-center" style="min-height:75vh">
<div class="absolute top-0 w-full h-full bg-center bg-cover" style="background-image:url('/banner.jpg')">
<span id="blackOverlay" class="w-full h-full absolute opacity-75 bg-black"></span>
</div>
{{ title|safe }}
</section>
2023-08-14 22:23:18 +02:00
{{ body|safe }}
</main>