diff options
Diffstat (limited to '')
| -rw-r--r-- | themes/hugo-book/layouts/_partials/docs/menu-hugo.html (renamed from themes/hugo-book/layouts/partials/docs/menu-hugo.html) | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/themes/hugo-book/layouts/partials/docs/menu-hugo.html b/themes/hugo-book/layouts/_partials/docs/menu-hugo.html index 5f01be0..871eea7 100644 --- a/themes/hugo-book/layouts/partials/docs/menu-hugo.html +++ b/themes/hugo-book/layouts/_partials/docs/menu-hugo.html @@ -10,7 +10,8 @@ <ul> {{ range . }} <li> - <a href="{{ .URL }}" {{ with .Params.class }}class="{{ . }}"{{ end }} {{ if not .Page }}target="_blank" rel="noopener"{{ end }}> + {{ $isRemote := not (or (.Page) (strings.HasPrefix .URL "/")) }} + <a href="{{ .URL }}" {{ with .Params.class }}class="{{ . }}"{{ end }} {{ if $isRemote }}target="_blank" rel="noopener"{{ end }}> {{- .Pre -}} {{ with .Page }} {{ partial "docs/title" .Page }} |
