Skip to content

Commit

Permalink
New columns (div) for additionals links.
Browse files Browse the repository at this point in the history
Signed-off-by: Kurt Garloff <[email protected]>
  • Loading branch information
garloff authored and fkr committed Jan 31, 2025
1 parent 359af90 commit 53f4c4c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions _includes/news/conferences.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,19 @@ <h5 style="font-size:.875em">{{item.event}}</h5>
{% 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><br/>
</a>
{% endif %}
{% if item.links %}
{% for link in item.links %}
<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 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>
Expand Down

0 comments on commit 53f4c4c

Please sign in to comment.