Does the menu url can be opened as a new web page? #824
-
https://github.com/adityatelange/hugo-PaperMod/wiki/FAQs#add-menu-to-site Is there something configuration to make |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
No configuration is present, however you can customize the below portion of code to achieve that
|
Beta Was this translation helpful? Give feedback.
-
I got external links to open in a new tab by replacing lines 129 and 130 of hugo-PaperMod/layouts/partials/header.html Lines 129 to 130 in eba92ed with <a href="{{ .URL | absLangURL }}" {{ if strings.HasPrefix .URL "http" }} target="_blank"{{ end }} title="{{ .Title | default .Name }} {{- cond $is_search (" (Alt + /)" | safeHTMLAttr) ("" | safeHTMLAttr ) }}"
{{- cond $is_search (" accesskey=/" | safeHTMLAttr) ("" | safeHTMLAttr ) }}> (I created a custom layout) |
Beta Was this translation helpful? Give feedback.
No configuration is present, however you can customize the below portion of code to achieve that
hugo-PaperMod/layouts/partials/header.html
Lines 108 to 117 in 15b984b
Override theme template