Skip to content
Snippets Groups Projects
publication-entries.html 786 B
Newer Older
{% assign publis = site.fc-publications | where:"plugin",include.plugin | where:"category",include.category %}
{% if 0 != publis.size %}
Allan Blanchard's avatar
Allan Blanchard committed
{% if include.title %}<h4> {{ include.title }} </h4>{% endif %}
{% for pub in publis reversed %}

<details>
  {% assign content = pub.content | strip_newlines %}
  <summary {% if content == "" %} class="empty" {% endif %}>
    {% if pub.authors %}<div>{{ pub.authors }}</div>{% endif %}
    <div><b>{{ pub.title }}</b>{% if pub.link %} [<a href="{{ pub.link }}">PDF</a>] {% endif %}</div>
    {% if pub.book %} <div>In {{ pub.book }}, {{ pub.year }}</div> {% endif %}
    {% if pub.short %}<div><em>{{ pub.short }}</em></div>{% endif %}
  </summary>
  {% if content != "" %}
  <em>{{ pub }}</em>
  {% endif %}
</details>

{% endfor %}

{% endif %}