Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/conf links visible #1097

Merged
merged 8 commits into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _data/conferences_de.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
event: "FOSSGIS-Konferenz 2024, HH"
title: "Sovereign Cloud Stack: Offene, föderierbare Cloud-Technologie für jeden Sektor"
link: "https://pretalx.com/fossgis2024/talk/FHTKUF/"
#link: "https://files.fossgis.de/Konferenz/2024/fossgis_tagungsband_2024_digital.pdf"
links: "https://files.fossgis.de/Konferenz/2024/fossgis_tagungsband_2024_digital.pdf"
slides: "Folien_FOSSGIS-20240320_Urban_Manuela.pdf"
details: "Dr. Manuela Urban"

Expand Down
4 changes: 2 additions & 2 deletions _data/conferences_en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
event: "C4DT Conference on Trustworthy and Sovereign Cloud Computing, Lausanne"
title: "Sovereign Cloud Stack: Open Source and Open Operations Solutions"
details: "Dr. Manuela Urban"
link: "https://drive.switch.ch/index.php/s/0oEA3iWCn5VoBOA?path=%2FPart%202%3A%20Exploring%20latest%20technical%20solutions#/files_mediaviewer/06_manuela_urban%20(1080p).mp4"
#link: "https://drive.switch.ch/index.php/s/0oEA3iWCn5VoBOA/download?path=%2FPart%202%3A%20Exploring%20latest%20technical%20solutions&files=06_manuela_urban%20(1080p).mp4"
links: "https://drive.switch.ch/index.php/s/0oEA3iWCn5VoBOA?path=%2FPart%202%3A%20Exploring%20latest%20technical%20solutions#/files_mediaviewer/06_manuela_urban%20(1080p).mp4"
link: "https://drive.switch.ch/index.php/s/0oEA3iWCn5VoBOA/download?path=%2FPart%202%3A%20Exploring%20latest%20technical%20solutions&files=06_manuela_urban%20(1080p).mp4"
slides: "EPFL-20230913-Urban_Manuela.pdf"

- date: "2023-09-13"
Expand Down
19 changes: 16 additions & 3 deletions _includes/news/conferences.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,29 @@ <h2 class="mb-3 mt-4"><small><i class="fa {{include.icon}} me-1"></i> {% t inclu
<div class="d-flex w-100 justify-content-between">
<div class="d-flex w-75 flex-column justify-content-start position-relative">
<h5 style="font-size:.875em">{{item.event}}</h5>
<a href="{{item.link}}" target="_blank" class="mb-1 text-decoration-none text-body stretched-link">{{item.title}}</a>
{% if item.link %}
<a href="{{item.link}}" target="_blank" class="mb-1 text-decoration-none text-body stretched-link">
<small><i class="fa fa-caret-square-o-right my-auto"></i></small> {{item.title}}</a>
{% else %}
{{item.title}}
{% endif %}
{% if item.details %}<p class="mb-1 small fw-light">— {{item.details}}</p>{% endif %}
</div>
<div class="d-flex w-25 flex-column justify-content-start text-end position-relative">
<div class="d-flex w-20 flex-column justify-content-start text-end position-relative">
<small>{% include date.html date=item.date %}</small>
{% if item.slides %}
<a class="mt-1 text-decoration-none text-secondary stretched-link" href="{% asset '{{item.slides}}' @path %}" target="_blank">
<i class="fa fa-download my-auto"></i> <small>{% t news.conference.slides %}</small>
</a>
</a>
{% endif %}
{% if item.links %}
{% for link in item.links %}
<div class="d-flex w-5 flex-column justify-content-start text-end position-relative">
<a class="mt-1 text-decoration-none text-secondary stretched-link" href="{{link}}" target="_blank">
<i class="fa fa-link my-auto"></i></a>
</div>
{% endfor %}
{% endif %}
</div>
</div>
</div>
Expand Down