Files
my_website/views/experience.html
2025-11-24 14:45:21 +07:00

25 lines
717 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" .Experience}}
</div>
<!-- Footer Section -->
{{ template "footer" .TemplateStore.Footer}}
</body>
{{ template "script" }}
</html>
{{ end}}