-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 945 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 945 Bytes
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
---
layout: default
pageTitle: Projects
---
<div id="projects">
<ul id="publications">
{% for publication in site.data.publication %}
<li>
<span id="publ_name"> <a href="{{publication.link}}" target="_blank">{{publication.name}}</a> </span> <br/>
<span id="publ_conf"> ({{publication.conference}}) </span> <br/>
<span id="publ_authors"> {{publication.authors}} </span> <br/>
</li>
<hr/>
{% endfor %}
</ul>
<ul id="project">
{% for project in site.data.projects %}
<li>
{% if project.hasLink == "true" %}
<span id="proj_name"> <a href="{{project.link}}" target="_blank">{{project.name}}</a></span> <br/>
{% endif %}
{% if project.hasLink == "false" %}
<span id="proj_name">{{project.name}}</span> <br/>
{% endif %}
<span id="proj_time">({{project.time}})</span> <br/> <br/>
<span id="proj_desc">{{project.description}}</span> <br/>
</li>
<hr/>
{% endfor %}
</ul>
</div>