mirror of
https://github.com/kevin-DL/gothstarter.git
synced 2026-01-11 18:14:27 +00:00
27 lines
866 B
Plaintext
27 lines
866 B
Plaintext
package layouts
|
|
|
|
import (
|
|
"gothstarter/views/components"
|
|
)
|
|
|
|
templ Base() {
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>GOTHSTARTER</title>
|
|
<link rel="icon" type="image/x-icon" href="/public/favicon.ico"/>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<link rel="stylesheet" href="/public/styles.css"/>
|
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
|
|
<script src="https://unpkg.com/alpinejs" defer></script>
|
|
<script src="https://unpkg.com/htmx.org@1.9.9" defer></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/js/all.min.js"></script>
|
|
</head>
|
|
<body class="antialiased">
|
|
@components.Navigation()
|
|
{ children... }
|
|
</body>
|
|
</html>
|
|
}
|