mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-27 02:24:14 -05:00
30 lines
841 B
HTML
30 lines
841 B
HTML
---
|
|
title: Publications
|
|
description: My research papers
|
|
permalink: /publications/
|
|
listing: true
|
|
---
|
|
|
|
{% for pub in site.data.publications %}
|
|
<article id="{{ pub.slug }}">
|
|
<header>
|
|
<p>
|
|
<time datetime="{{ pub.date | date_to_xmlschema }}">
|
|
{{ pub.date | date_to_long_string: "ordinal" }}
|
|
</time>
|
|
</p>
|
|
<h2><a href="{% if pub.web %}{{ pub.web }}{% else %}{{ pub.file }}{% endif %}">{{ pub.title }}</a></h2>
|
|
</header>
|
|
<section>
|
|
{% if pub.venue %}<p>{{ pub.venue }}</p>{% endif %}
|
|
</section>
|
|
<footer>
|
|
<p>
|
|
{% if pub.web %}<a href="{{ pub.web }}">Web edition</a> · {% endif %}
|
|
<a class="file" href="{{ pub.file }}">PDF</a> ·
|
|
<a class="doi" href="https://doi.org/{{ pub.doi }}">{{ pub.doi }}</a>
|
|
</p>
|
|
</footer>
|
|
</article>
|
|
{% endfor %}
|