Skip to content

Commit 7acabee

Browse files
committed
Fix 2
1 parent 1d738df commit 7acabee

1 file changed

Lines changed: 16 additions & 30 deletions

File tree

posters/index.md

Lines changed: 16 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -10,36 +10,22 @@ nav:
1010
{% include section.html %}
1111

1212
{% assign posters = site.data.posters | sort: "date" | reverse %}
13-
1413
{% for poster in posters %}
15-
<div class="citation-container">
16-
<div class="citation">
17-
<div class="citation-text">
18-
{% include icon.html icon="fa-solid fa-chalkboard" %}
19-
<a href="{{ poster.pdf | relative_url }}" target="_blank" class="citation-title">
20-
{{ poster.title }}
21-
</a>
22-
<div class="citation-authors">
23-
{% for author in poster.authors %}
24-
{% if author.member %}
25-
<a href="{{ '/members/' | append: author.member | relative_url }}">{{ author.name }}</a>
26-
{% else %}
27-
{{ author.name }}
28-
{% endif %}
29-
{% unless forloop.last %}, {% endunless %}
30-
{% endfor %}
31-
</div>
32-
<div class="citation-details">
33-
{% if poster.event %}
34-
<span class="citation-publisher">{{ poster.event }}</span>
35-
&nbsp;·&nbsp;
36-
{% endif %}
37-
<span class="citation-date">{{ poster.date | date: "%Y" }}</span>
38-
</div>
39-
<div class="citation-buttons">
40-
{% include button.html type="link" icon="fa-solid fa-file-pdf" text="View PDF" link=poster.pdf style="bare" %}
41-
</div>
42-
</div>
43-
</div>
14+
<div class="citation-container" markdown="0">
15+
<div class="citation">
16+
<div class="citation-text">
17+
{% include icon.html icon="fa-solid fa-chalkboard" %}
18+
<a href="{{ poster.pdf | relative_url }}" target="_blank" class="citation-title">{{ poster.title }}</a>
19+
<div class="citation-authors">
20+
{% for author in poster.authors %}{% if author.member %}<a href="{{ '/members/' | append: author.member | relative_url }}">{{ author.name }}</a>{% else %}{{ author.name }}{% endif %}{% unless forloop.last %}, {% endunless %}{% endfor %}
21+
</div>
22+
<div class="citation-details">
23+
{% if poster.event %}<span class="citation-publisher">{{ poster.event }}</span>&nbsp;·&nbsp;{% endif %}<span class="citation-date">{{ poster.date | date: "%Y" }}</span>
24+
</div>
25+
<div class="citation-buttons">
26+
{% include button.html type="link" icon="fa-solid fa-file-pdf" text="View PDF" link=poster.pdf style="bare" %}
27+
</div>
28+
</div>
29+
</div>
4430
</div>
4531
{% endfor %}

0 commit comments

Comments
 (0)