Skip to content

Commit 7969f78

Browse files
authored
Create bib.html
1 parent 1e25e4f commit 7969f78

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

_layouts/bib.html

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
---
2+
---
3+
<div class="publication-item">
4+
<div class="pub-row">
5+
<div class="pub-main">
6+
<div class="pub-title">
7+
{% if entry.title %}
8+
{{ entry.title }}
9+
{% endif %}
10+
</div>
11+
12+
<div class="pub-authors">
13+
{% if entry.author %}
14+
{{ entry.author }}
15+
{% endif %}
16+
</div>
17+
18+
<div class="pub-venue">
19+
{% if entry.journal %}
20+
<em>{{ entry.journal }}</em>
21+
{% elsif entry.booktitle %}
22+
<em>{{ entry.booktitle }}</em>
23+
{% endif %}
24+
25+
{% if entry.volume %}
26+
, vol. {{ entry.volume }}
27+
{% endif %}
28+
29+
{% if entry.number %}
30+
({{ entry.number }})
31+
{% endif %}
32+
33+
{% if entry.pages %}
34+
, pp. {{ entry.pages }}
35+
{% endif %}
36+
37+
{% if entry.year %}
38+
, <strong>{{ entry.year }}</strong>
39+
{% endif %}
40+
</div>
41+
</div>
42+
43+
<div class="pub-links">
44+
{% if entry.url %}
45+
<a href="{{ entry.url }}" class="pub-btn">Paper</a>
46+
{% endif %}
47+
48+
{% if entry.pdf %}
49+
<a href="{{ entry.pdf }}" class="pub-btn">PDF</a>
50+
{% endif %}
51+
52+
{% if entry.doi %}
53+
<a href="https://doi.org/{{ entry.doi }}" class="pub-btn">DOI</a>
54+
{% endif %}
55+
56+
{% if entry.arxiv %}
57+
<a href="https://arxiv.org/abs/{{ entry.arxiv }}" class="pub-btn">arXiv</a>
58+
{% endif %}
59+
60+
{% if entry.code %}
61+
<a href="{{ entry.code }}" class="pub-btn">Code</a>
62+
{% endif %}
63+
</div>
64+
</div>
65+
</div>

0 commit comments

Comments
 (0)