-
Notifications
You must be signed in to change notification settings - Fork 2
/
publications.html
75 lines (64 loc) · 1.75 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
---
layout: default
title: Publications
---
<!-- <h2>{{site.data.publications.JournalPapers.Title}}</h2> -->
<!-- <p>{{site.data.publications.JournalPapers.Description}}</p> -->
<h1>Research Articles</h1>
<hr>
{% for paper in site.data.publications.JournalPapers %}
<!-- <h3>{{YearNumber.Year}}</h3> -->
<ul>
<p><a href={{paper.link}}>{{paper.title}}</a></p>
<p>{{paper.authors}}</p>
<p>{{paper.JournalName}}</p>
{% if paper.GiithubRepoLink %}
<p><a href={{paper.GiithubRepoLink}}>{{"Github Repository"}}</a></p>
{% endif %}
</ul>
<hr>
{% endfor %}
<br/>
<h1>Conference Presentations</h1>
<hr>
{% for presentation in site.data.publications.ConferencePresentations %}
<ul>
<p>{{presentation.title}}</p>
<p><a href={{presentation.ConferenceLink}}>{{presentation.ConferenceName}}</a></p>
</ul>
<hr>
{% endfor %}
<!-- <div style="margin-top: 4em; margin-bottom: 4em"><hr class="ProjectsDivider"></div> -->
<!--
<h2>{{site.data.publications.Conferences.Title}}</h2>
<p>{{site.data.publications.Conferences.Description}}</p>
<h3>Conference Presentations</h3>
<hr>
{% for YearNumber in site.data.publications.Conferences.YearWise %}
<h3>{{YearNumber.Year}}</h3>
<hr>
{% for pubs in YearNumber.sub %}
<ul>
<li>
{{pubs.Details}}
</li>
</ul>
<hr>
{% endfor %}
{% endfor %} -->
<!--
<div style="margin-top: 4em; margin-bottom: 4em"><hr class="ProjectsDivider"></div>
<h2>{{site.data.publications.Other.Title}}</h2>
<p>{{site.data.publications.Other.Description}}</p>
{% for YearNumber in site.data.publications.Other.YearWise %}
<h3>{{YearNumber.Year}}</h3>
<hr>
{% for pubs in YearNumber.sub %}
<ul>
<li>
<a href={{pubs.ReportUrl}}>{{pubs.Title}}</a> ({{pubs.Description}})
</li>
</ul>
<hr>
{% endfor %}
{% endfor %} -->