divyam.dev/layouts/partials/header.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

12 lines
501 B
HTML

<header class="site-header">
<div class="site-header-inner">
<a href="/" class="site-title">{{ .Site.Title }}</a>
<nav class="site-nav">
{{- $currentPage := . -}}
{{- range $i, $item := .Site.Menus.main -}}
{{- if $i }}<span class="nav-separator">|</span>{{ end -}}
<a href="{{ .URL }}"{{ if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }} class="active"{{ end }}>{{ .Name }}</a>
{{- end -}}
</nav>
</div>
</header>