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

11 lines
400 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 16:53:27 +02:00
<section id="main-header" class="pt-16 pb-32 flex content-center items-center justify-center">
<div class="absolute -z-10 top-0 w-full h-[28rem] bg-center bg-cover" style="background-image:url('/banner.jpg')">
2023-08-16 08:48:39 +02:00
<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>