-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.html
More file actions
43 lines (38 loc) · 2 KB
/
Copy pathpublications.html
File metadata and controls
43 lines (38 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
layout: page
title: Publications
subtitle: Selected corresponding-author and lab-led publications
description: Selected corresponding-author and lab-led publications from the Brunaugh Lab.
permalink: /publications/
---
<p>Selected publications from the Brunaugh Lab. For a complete list, see <a href="https://scholar.google.com/citations?hl=en&user=ZjobVZgAAAAJ">Google Scholar</a>.</p>
{% assign current_year = nil %}
{% for publication in site.data.publications %}
{% if publication.year != current_year %}
<h2 class="pub-year">{{ publication.year }}</h2>
{% assign current_year = publication.year %}
{% endif %}
<article class="pub-entry{% if publication.image %} pub-entry--featured{% endif %}">
{% if publication.image %}
<a class="pub-visual" href="{{ publication.url }}" aria-label="View article: {{ publication.title | escape }}">
<img src="{{ publication.image | relative_url }}" alt="{{ publication.image_alt | escape }}" loading="lazy" decoding="async">
<span>{{ publication.visual_caption }}</span>
</a>
{% endif %}
<div class="pub-content">
<p class="pub-citation">{{ publication.authors }}. <a class="pub-title" href="{{ publication.url }}">{{ publication.title }}</a>. <em>{{ publication.journal }}</em>, {{ publication.details }}.</p>
<div class="pub-meta">
<div class="pub-tags" aria-label="Research topics">
{% for tag in publication.tags %}
<span class="pub-tag">{{ tag }}</span>
{% endfor %}
</div>
<div class="pub-links">
<a class="pub-link" href="{{ publication.url }}">View article <span aria-hidden="true">↗</span></a>
{% if publication.code_url %}<a class="pub-link" href="{{ publication.code_url }}">Code <span aria-hidden="true">↗</span></a>{% endif %}
{% if publication.data_url %}<a class="pub-link" href="{{ publication.data_url }}">Data <span aria-hidden="true">↗</span></a>{% endif %}
</div>
</div>
</div>
</article>
{% endfor %}