-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpub-links.html
54 lines (47 loc) · 1.47 KB
/
pub-links.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{{ with $.Params.doi }}
<a class="button pub-link hollow" href="https://doi.org/{{ . }}" target="_blank">
<i class="fa fa-external-link" aria-hidden="true"></i>
DOI
</a>
{{ end }}
{{ with $.Params.url_pdf }}
<a class="button pub-link hollow" href="{{ . | absURL }}" target="_blank">
<i class="fa fa-file-pdf-o" aria-hidden="true"></i>
PDF
</a>
{{ end }}
{{ with $.Params.url_slides }}
<a class="button pub-link hollow" href="{{ . | absURL }}" target="_blank">
<i class="fa fa-file-powerpoint-o" aria-hidden="true"></i>
{{ i18n "PubIconsSlides" }}
</a>
{{ end }}
{{ with $.Params.url_video }}
<a class="button pub-link hollow" href="{{ . | absURL }}" target="_blank">
<i class="fa fa-film" aria-hidden="true"></i>
Video
</a>
{{ end }}
{{ with $.Params.url_code }}
<a class="button pub-link hollow" href="{{ . | absURL }}" target="_blank">
<i class="fa fa-code" aria-hidden="true"></i>
Code
</a>
{{ end }}
{{ with $.Params.url_dataset }}
<a class="button pub-link hollow" href="{{ . | absURL }}" target="_blank">
<i class="fa fa-database" aria-hidden="true"></i>
{{ i18n "PubIconsData" }}
</a>
{{ end }}
{{ with $.Params.url_project }}
<a class="button pub-link hollow" href="{{ . | absURL }}" target="_blank">
<i class="fa fa-tasks" aria-hidden="true"></i>
{{ i18n "PubIconsProject" }}
</a>
{{ end }}
{{ range $.Params.url_custom }}
<a class="button pub-link hollow" href="{{ .url | absURL }}" target="_blank">
{{ .name }}
</a>
{{ end }}