27
0
Fork 1
forked from mirror/Mainroad

Add external link feature

Menu entries to internal pages have access to the .Page method, so use
that to discriminate.
This commit is contained in:
dark_hash 2025-01-18 22:15:46 +01:00 committed by Xiretza
parent 6f6fc89320
commit a8f1053d7e
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
<div class="footer__links">
{{ range $key, $value := . }}
{{- if ne $key 0 }} | {{ end -}}
<a class="footer__link" href="{{ $value.URL }}">{{ $value.Name }}</a>
<a class="footer__link" href="{{ $value.URL }}" {{- if not .Page }} target="_blank"{{ end }}>{{ $value.Name }}</a>
{{- end }}
</div>
{{- end }}

View file

@ -8,7 +8,7 @@
{{- range .Site.Menus.main }}
{{- if .Name }}
<li class="menu__item{{ if or ($currentNode.IsMenuCurrent "main" .) ($currentNode.HasMenuCurrent "main" .) }} menu__item--active{{ end }}">
<a class="menu__link" href="{{ .URL }}">
<a class="menu__link" href="{{ .URL }}" {{- if not .Page }} target="_blank"{{ end }}>
{{ if .Pre }}
{{ readFile (printf "static%s" .Pre) | safeHTML }}
{{ end }}