generated from MPSLab-ASU/Paper_Page_Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
175 lines (163 loc) · 8 KB
/
index.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
---
layout: default
title: Home
---
<!-- As a heading -->
<div class="container" style="margin-top:5rem;">
<div id="Header">
<h1 class="display-1 page-title">{{site.paper_name}}</h1>
<ul class="authors-list list-inline">
{%for author in site.data.authors%}
<li class="list-inline-item"><a href="" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasRight" aria-controls="offcanvasRight">
{{author.name}}{%- if author.primary == true -%}*{%- endif -%}
</a></li>
{%endfor%}
</ul>
<figcaption class="blockquote-footer text-center">
* Indicates Primary Authors
</figcaption>
<ul class="org-list list-unstyled text-center">
{%- if site.sub_organization -%}
<li>{{site.sub_organization}}</li>
{%- endif -%}
{%- if site.organization -%}
<li>{{site.organization}}</li>
{%- endif -%}
</ul>
<ul class="resource-list list-inline">
{%- if site.paper_pdf -%}
<li><a role="button" href="{{site.paper_pdf}}" class="btn btn-primary rounded-pill">
<i class="fa fa-file-pdf-o"></i><b> Paper</b>
</a> </li>
{%- endif -%}
{%- if site.supplementary_pdf -%}
<li><a role="button" href="{{site.supplementary_pdf}}" class="btn btn-primary rounded-pill">
<i class="far fa-file-pdf"></i><b> Paper</b>
</a> </li>
{%- endif -%}
{%- if site.code -%}
<li><a role="button" href="{{site.code}}" class="btn btn-secondary rounded-pill" style="background-color: #242424;">
<i class="devicon-github-original"></i><b> Code</b>
</a> </li>
{%- endif -%}
{%- if site.arXiv -%}
<li><a role="button" href="{{site.arXiv}}" class="btn btn-danger rounded-pill" style="background-color: #B31B1B">
<i class="ai ai-arxiv-square"></i> <b> ArXiv</b>
</a> </li>
{%- endif -%}
{%- if site.IEEE -%}
<li><a role="button" href="{{site.IEEE}}" class="btn btn-primary rounded-pill" style="border-color: #17445A;background-color: #17445A">
<i class="ai ai-ieee-square"></i> <b> IEEE </b>
</a> </li>
{%- endif -%}
</ul>
</div>
<div class="abstract">
<h2>Abstract</h2>
<div class="abstract-text">
{% capture content %}{% include_relative paper_components/abstract.md %}{% endcapture %}
{{ content | markdownify }}
</div>
</div>
{%- if site.main_media -%}
<div class="media">
<figure class="figure">
<img src="{{site.main_media.source}}" class="figure-img img-fluid rounded" alt="...">
<figcaption class="figure-caption"><b>Figure:</b> {{site.main_media.caption}}</figcaption>
</figure>
</div>
{%- endif -%}
{%- if site.data.figures[1].caption -%}
<div id="Media_Carousel">
<hr class="dotted">
<h2 class="component-title">Important Figures</h2>
<div id="figureCarosel" class="carousel carousel-dark slide" data-ride="carousel" data-bs-interval="false">
<div class="carousel-inner">
{% for figure in site.data.figures %}
<div class="carousel-item {% if forloop.first %}active{% endif %}">
<div class="media">
<figure>
<img src="assets/images/{{figure.filename}}" class="figure-img img-fluid rounded">
<figcaption><b>Figure: </b>{{ figure.caption | markdownify}}</figcaption>
</figure>
</div>
</div>
{% endfor %}
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#figureCarosel" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#figureCarosel" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
{%- endif -%}
<div id="Components">
<hr class="dotted">
<h2 class="component-title">Paper Details</h2>
<div class="md-block" markdown=1>
{% capture content %}{% include_relative paper_components/description.md %}{% endcapture %}
{{ content | markdownify }}
</div>
</div>
<hr class="dotted">
<div id="BibTex">
<h2>Bibtex</h2>
<div class="bibtex md-block" markdown=1>
{% capture content %}{% include_relative paper_components/bibtex_ref.md %}{% endcapture %}
{{ content | markdownify }}
</div>
</div>
<hr>
</div>
<div class="offcanvas offcanvas-end" tabindex="-1" data-bs-scroll="true" id="offcanvasRight" aria-labelledby="offcanvasRightLabel">
<div class="offcanvas-header">
<h5 id="offcanvasRightLabel">Author Details</h5>
<button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="list-group authors">
{%for author in site.data.authors%}
<li class="list-group-item">
<div class="card text-center mb-3">
<div class="card-body">
<h6 class="card-title">{{author.name}}</h6>
{%- if author.primary == true -%}<span class="badge bg-secondary">Primary</span>{%- endif -%}
<ul class="org-list list-unstyled text-center">
{%- if author.position -%}
<li>{{author.position}}</li>
{%- endif -%}
{%- if author.sub_organization -%}
<li>{{author.sub_organization}}</li>
{%- endif -%}
{%- if author.organization -%}
<li>{{author.organization}}</li>
{%- endif -%}
</ul>
</div>
<div class="card-footer bg-transparent">
{%- if author.email -%}
<a href="mailto:{{author.email}}"><i class="fa fa-envelope-o"></i></a>
{%- endif -%}
{%- if author.linkedin -%}
<a href="https://www.linkedin.com/in/{{author.linkedin}}"><i class="devicon-linkedin-plain colored"></i></a>
{%- endif -%}
{%- if author.github -%}
<a href="https://github.com/{{author.github}}"><i class="devicon-github-plain colored"></i></a>
{%- endif -%}
{%- if author.google_scholar -%}
<a href="{{author.google_scholar}}"><i class="ai ai-google-scholar-square"></i></a>
{%- endif -%}
{%- if author.website -%}
<a href="{{author.website}}"><i class="fa fa-link"></i></a>
{%- endif -%}
</div>
</div>
</li>
{%endfor%}
</ul>
</div>
</div>