File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed
Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change 1- {% assign pubs = site.scholar.bibliography | sort: "year" | reverse %}
2- {% assign years = pubs | map: "year" | uniq %}
3-
4- < h2 > Publications</ h2 >
5-
6- {% for y in years %}
7- < h3 > {{ y }}</ h3 >
1+ {% for group in bibliography %}
2+ < h3 > {{ group.name }}</ h3 >
83 < ul >
9- {% for entry in pubs %}
10- {% if entry.year == y %}
11- < li >
12- {{ entry.author }} ({{ entry.year }}).
13- < em > {{ entry.title }}</ em > .
14- {% if entry.journal %} {{ entry.journal }}{% endif %}
15- {% if entry.url %} < a href ="{{ entry.url }} "> [link]</ a > {% endif %}
16- </ li >
17- {% endif %}
4+ {% for entry in group.items %}
5+ < li >
6+ {{ entry.author }} ({{ entry.year }}).
7+ < em > {{ entry.title }}</ em > .
8+ {% if entry.journal %}
9+ {{ entry.journal }}
10+ {% elsif entry.booktitle %}
11+ {{ entry.booktitle }}
12+ {% elsif entry.publisher %}
13+ {{ entry.publisher }}
14+ {% endif %}
15+ {% if entry.url %} < a href ="{{ entry.url }} " target ="_blank "> [Link]</ a > {% endif %}
16+ </ li >
1817 {% endfor %}
1918 </ ul >
2019{% endfor %}
20+
You can’t perform that action at this time.
0 commit comments