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

23 lines
697 B
HTML

{{ block "projects" . }}
<!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"
>
<!-- Projects Section -->
<div id="content" class="flex-grow">{{ template "projects-partial" .Project}}</div>
<!-- Footer Section -->
{{ template "footer" .TemplateStore.Footer}}
</body>
{{ template "script" }}
</html>
{{ end }}