mirror of
https://github.com/gcushen/hugo-academic.git
synced 2025-07-26 19:15:16 +02:00
staticref shortcode: Add "newtab"
option to open link in new tab
This commit is contained in:
parent
7f9b8acbb2
commit
143576bc99
2 changed files with 6 additions and 2 deletions
|
@ -60,7 +60,9 @@ A numbered figure with caption:
|
|||
|
||||
To enable linking to a file, such as a PDF, first place the file in your `static/files/` folder and then link to it using the following form:
|
||||
|
||||
{{%/* staticref "files/cv.pdf" */%}}Download my CV{{%/* /staticref */%}}
|
||||
{{%/* staticref "files/cv.pdf" "newtab" */%}}Download my CV{{%/* /staticref */%}}
|
||||
|
||||
The optional `"newtab"` argument for `staticref` will cause the link to be opened in a new tab.
|
||||
|
||||
## Emojis
|
||||
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
<a href="{{ .Page.Site.BaseURL }}{{ .Get 0 }}"/>{{ .Inner }}</a>
|
||||
<a href="{{ .Get 0 | absURL }}"{{ if len .Params | eq 2 }} target="_blank"{{ end }}>
|
||||
{{ .Inner }}
|
||||
</a>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue