diff options
| author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-06-03 22:38:52 +0530 | 
|---|---|---|
| committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-06-03 22:38:52 +0530 | 
| commit | 22258404cbb0acab8d8042df19adb6f868b5e195 (patch) | |
| tree | 4eb4d856b4cb00ea091faf0f54921771a6ec6d44 | |
| parent | f7175a61b6f1c8dbe5525c29081d0b00bce998df (diff) | |
| -rw-r--r-- | layouts/partials/header.html | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/layouts/partials/header.html b/layouts/partials/header.html index d9000da..93593a4 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -4,7 +4,7 @@    <nav>      <a href="/" class="{{ if eq .Kind "home"}}active{{ end }}">Home</a>      {{ if .Site.RegularPages }}<a href="/releases" class="{{ if eq .Type "releases"}}active{{ end }}">Releases</a>{{ end }} -    {{ if .Site.Params.gitURL }}<a href="{{ .Site.Params.gitURL }}">Git</a>{{ end }} +    {{ if .Site.Params.gitURL }}<a href="{{ .Site.Params.gitURL }}">Source Code</a>{{ end }}      {{ range .Site.Params.extraNavLinks }}        <a href="{{ index . 1 }}" target="_blank">{{ index . 0 }}</a>      {{ end }} |