32 lines
989 B
HTML
32 lines
989 B
HTML
{{ block "index" . }}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>My CV Website</title>
|
|
<script src="https://unpkg.com/htmx.org@1.9.2"></script>
|
|
<link rel="stylesheet" href="/css/main.css" />
|
|
</head>
|
|
|
|
<body
|
|
class="bg-primary dark:bg-darkprimary text-bodytext dark:text-darkbodytext text-sm md:text-lg flex flex-col min-h-screen"
|
|
>
|
|
<div class="relative flex-grow">
|
|
<div
|
|
id="scatteredWords"
|
|
class="pointer-events-none absolute inset-0 overflow-hidden select-none hidden md:block"
|
|
>
|
|
{{ range .TemplateStore.ScatterWord }}
|
|
{{ template "scattered-words" . }}
|
|
{{ end }}
|
|
</div>
|
|
<div id="content" class="flex-grow">{{ template "about-partial" }}</div>
|
|
</div>
|
|
<!-- Footer Section -->
|
|
{{ template "footer" .TemplateStore.Footer}}
|
|
</body>
|
|
{{ template "script" }}
|
|
</html>
|
|
{{ end }}
|