|
10 | 10 | {% include section.html %} |
11 | 11 |
|
12 | 12 | {% assign posters = site.data.posters | sort: "date" | reverse %} |
13 | | - |
14 | 13 | {% 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 | | - · |
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> · {% 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> |
44 | 30 | </div> |
45 | 31 | {% endfor %} |
0 commit comments