divyam.dev/layouts/_default/baseof.html
Divyam Ahuja 2e5580024f
Some checks are pending
Deploy Hugo site to Pages / build (push) Waiting to run
Deploy Hugo site to Pages / deploy (push) Blocked by required conditions
feat: complete unified hugo and typst resume workflow with github actions
2026-05-08 14:55:12 +05:30

15 lines
312 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.Language.Locale | default "en" }}">
<head>
{{- partial "head.html" . -}}
</head>
<body>
<div class="site-wrapper">
{{- partial "header.html" . -}}
<main>
{{- block "main" . }}{{ end -}}
</main>
</div>
{{- partial "footer.html" . -}}
</body>
</html>