25 lines
686 B
HTML
25 lines
686 B
HTML
{{ block "experience" . }}
|
|
<!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 flex flex-col min-h-screen"
|
|
>
|
|
<!-- Experience Section -->
|
|
<div id="content" class="flex-grow">
|
|
{{ template "experience-partial" .}}
|
|
</div>
|
|
<!-- Footer Section -->
|
|
{{ template "footer" }}
|
|
</body>
|
|
{{ template "script" }}
|
|
</html>
|
|
{{ end}}
|