divyam.dev/layouts/_default/baseof.html
Divyam Ahuja ec86c4348b
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
Update Resume & Add Open Source Section
2026-08-24 14:29:20 +05:30

15 lines
311 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>