We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e28262 commit 8ba36e6Copy full SHA for 8ba36e6
_layouts/publication.html
@@ -0,0 +1,14 @@
1
+{%- assign allpubs = site.data.allpubs -%}
2
+{%- assign prevyear = null -%}
3
+{%- for pub in allpubs -%}
4
+{%- if pub.year != prevyear -%}
5
+{%- if prevyear != null %}
6
+ </ul>
7
+{%- endif %}
8
+ <h2 id="publications">{{ pub.year }}</h2>
9
+ <ul class="publications">
10
+{% assign prevyear = pub.year -%}
11
+{%- endif -%}
12
+ {%- include pubitem.html pub=pub -%}
13
+{%- endfor %}
14
buildpubs.md
@@ -0,0 +1,4 @@
+---
+layout: publication
+title: Publications
0 commit comments