Skip to content

Commit e03e7b6

Browse files
committed
Init poster section
1 parent a67ca11 commit e03e7b6

3 files changed

Lines changed: 60 additions & 0 deletions

File tree

_data/posters.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
- title: Towards an Urban Digital Twin: A use case for the optimization of urban traffic
2+
authors:
3+
- name: Filippo Dalla
4+
member: filippo-dalla
5+
- name: Gregorio Berselli
6+
member: gregorio-berselli
7+
- name: Dragos Dumitru Ioan
8+
member: dragosdumitru-ioan
9+
- name: Armando Bazzani
10+
member: armando-bazzani
11+
- name: Mirko degli Esposti
12+
member: mirko-degliesposti
13+
pdf: posters/dtw25.pdf
14+
event: DTW 2025 - Padova
15+
date: 2025-02-20

posters/dtw25.pdf

4.3 MB
Binary file not shown.

posters/index.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
title: Posters
3+
nav:
4+
order: 3
5+
tooltip: Posters presented at workshops and conferences
6+
---
7+
8+
# {% include icon.html icon="fa-solid fa-image" %}Posters
9+
10+
{% include section.html %}
11+
12+
{% assign posters = site.data.posters | sort: "date" | reverse %}
13+
14+
{% 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>
44+
</div>
45+
{% endfor %}

0 commit comments

Comments
 (0)