-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpublications.html
103 lines (98 loc) · 3.19 KB
/
publications.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
---
layout: default
---
<!-- Page header -->
<div class="jumbotron jumbotron-fluid py-4">
<div class="container">
<h1 class="display-4">{{ page.title }}</h1>
<div class="lead">
{{ page.jumbo_txt | markdownify }}
</div>
</div>
</div>
<!-- Publication page content -->
<div class="container">
<!-- This first row will contain a bit of explanatory text about how this page
is organized and a table w/icon explanations. -->
<div class="row">
<!-- Context blurb -->
<div class="col">
<div class="card border-0">
<div class="card-body">
<h5 class="card-title">Context</h5>
<div class="card-text">
{{ page.overview | markdownify }}
</div>
</div>
</div>
</div>
<!-- Icon definitions table -->
<div class="col">
<div class="card" id="iconography-table">
<div class="card-body">
<h5 class="card-title">Iconography</h5>
<table class="table table-sm">
<thead class="thead-dark">
<tr>
<th scope="col">Icon</th>
<th scope="col">Publication venue</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">{{ site.data.icons.venue_journal_icon }}</th>
<td>Journal publication</td>
</tr>
<tr>
<th scope="row">{{ site.data.icons.venue_conference_icon }}</th>
<td>Conference publication</td>
</tr>
<tr>
<th scope="row">{{ site.data.icons.venue_workshop_icon }}</th>
<td>Workshop publication</td>
</tr>
<tr>
<th scope="row">{{ site.data.icons.venue_book_icon }}</th>
<td>Book section/chapter</td>
</tr>
<tr>
<th scope="row">{{ site.data.icons.venue_preprint_icon }}</th>
<td>Preprint</td>
</tr>
</tbody>
<thead class="thead-dark">
<tr>
<th scope="col">Icon</th>
<th scope="col">Other information</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">{{ site.data.icons.pdf_icon }}</th>
<td>Link to download pdf version of publication</td>
</tr>
<tr>
<th scope="row">{{ site.data.icons.bibtex_icon }}</th>
<td>Link to BibTex citation</td>
</tr>
<tr>
<th scope="row">{{ site.data.icons.github_repository_icon }}</th>
<td>Link to an associated GitHub repository</td>
</tr>
<tr>
<th scope="row">{{ site.data.icons.presentation_icon }}</th>
<td>Link to an associated poster or slide deck</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- This next enumerates all publications listed in publications.yml by category. -->
<div class="row">
<div class="col">
{% include list_publications.html header_level="2" %}
</div>
</div>
</div>