Skip to content

Commit 4e28fe0

Browse files
authored
Add files via upload
1 parent 06e6bb5 commit 4e28fe0

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{{ $item := .item }}
2+
{{ $has_attachments := partial "functions/has_attachments" $item }}
3+
4+
<div class="pub-list-item view-citation" style="margin-bottom: 1rem">
5+
<i class="far fa-file-alt pub-icon" aria-hidden="true"></i>
6+
7+
{{/* Custom Style with Conference/Journal Name First */}}
8+
{{ if $item.Params.publication_short }}
9+
<strong>{{ $item.Params.publication_short | markdownify }}</strong>.
10+
{{ else if $item.Params.publication }}
11+
<strong>{{ $item.Params.publication | markdownify }}</strong>.
12+
{{ end }}
13+
<span class="article-metadata li-cite-author">
14+
{{ partial "page_metadata_authors" $item }}
15+
</span>
16+
({{- $item.Date.Format "2006" -}}).
17+
<a href="{{ $item.RelPermalink }}">{{ $item.Title }}</a>.
18+
19+
<p>{{ partial "page_links" (dict "page" $item "is_list" 1) }}</p>
20+
</div>

0 commit comments

Comments
 (0)