-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.html
More file actions
65 lines (54 loc) · 2.01 KB
/
publications.html
File metadata and controls
65 lines (54 loc) · 2.01 KB
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
55
56
57
58
59
60
61
62
63
64
---
layout: base
title: "Publications"
---
<div class="publications-page">
<h1>Publications</h1>
<section class="publications">
{% for publication in site.data.publications %}
<div class="publication">
<!-- Title -->
<h3 class="pub-title"><strong>{{ publication.title }}</strong></h3>
<!-- Authors -->
<p class="authors">
<em>{{ publication.authors }}</em>
</p>
<!-- Venue (optional) -->
{% if publication.venue %}
<p class="venue">
<em>{{ publication.venue }}</em>
</p>
{% endif %}
<!-- Figure -->
{% if publication.figure %}
<div class="pub-figure">
<img src="{{ publication.figure }}" alt="Figure for {{ publication.title }}">
</div>
{% endif %}
<!-- Abstract -->
<p>{{ publication.abstract }}</p>
<!-- Links (GitHub, Arxiv, Cite) -->
<div class="pub-links">
{% if publication.github %}
<a href="{{ publication.github }}" target="_blank" class="btn">
<i class="fab fa-github"></i> GitHub
</a>
{% endif %}
{% if publication.arxiv %}
<a href="{{ publication.arxiv }}" target="_blank" class="btn">
<i class="fas fa-file-alt"></i> ArXiv
</a>
{% endif %}
<!-- Cite toggle -->
<button type="button" class="btn cite-btn" data-bibtex-target="bibtex-entry-{{ forloop.index }}">
<i class="fas fa-quote-right"></i> Cite
</button>
</div>
<!-- BibTeX Entry (Hidden by Default) -->
<div id="bibtex-entry-{{ forloop.index }}" class="bibtex-entry">
<pre>{{ publication.bibtex }}</pre>
</div>
</div>
{% endfor %}
</section>
</div>