We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aad14cd commit 23fde9fCopy full SHA for 23fde9f
1 file changed
_pages/publications.md
@@ -0,0 +1,18 @@
1
+---
2
+permalink: /publications/
3
+title: "Publications"
4
+layout: single
5
+author_profile: true
6
+
7
+# This tells the page to gather all entries in the "publications" collection
8
+toc: true
9
10
11
+{% assign pubs = site.publications | sort: 'date' | reverse %}
12
+{% for pub in pubs %}
13
+- **{{ pub.title }}**, {{ pub.venue }} ({{ pub.date | date: "%Y" }})
14
+ <br>
15
+ {% if pub.link %}<a href="{{ pub.link }}">link</a>{% endif %}
16
+ {% if pub.doi %} • <a href="https://doi.org/{{ pub.doi }}">doi</a>{% endif %}
17
+{% endfor %}
18
0 commit comments