For better code organisation the entire Codebase has been restructured and cleaned up. handlers have been separated into an own package, as well as the model.
14 lines
586 B
HTML
14 lines
586 B
HTML
{{ define "header" }}
|
|
<header>
|
|
<nav class="navbar bg-base-100">
|
|
<a href="/" class="btn btn-ghost text-xl">Dungeons & Dragons</a>
|
|
<a href="/about" class="btn btn-ghost text-xl">About</a>
|
|
<a href="/contact" class="btn btn-ghost text-xl">Contact</a>
|
|
</nav>
|
|
<div id="banner" class="banner bg-gray-800 p-8 text-white">
|
|
<img src="/images/images/banner.jpg" alt="Dungeons-and-Dragons-Banner">
|
|
<a href="https://dnd.wizards.com/resources/press-assets">image credits</a>
|
|
<h1 class="centered text-4xl font-bold">Dungeons and Dragons</h1>
|
|
</div>
|
|
</header>
|
|
{{ end }}
|