small changes to publications and research related pages
Some checks failed
Jekyll site CI / docker (push) Failing after 2m23s

This commit is contained in:
2025-05-26 13:47:55 +02:00
parent 14a709a25c
commit 0e34ff1a56
5 changed files with 54 additions and 44 deletions

View File

@ -11,19 +11,29 @@
{% endif %}
<div class="{{ include.type | default: 'list' }}__item">
<article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork"{% if post.locale %} lang="{{ post.locale }}"{% endif %}>
<article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork"
{% if include.type != "grid" %}
style="display: flex; align-items: flex-start;"
{% endif %}
{% if post.locale %} lang="{{ post.locale }}"{% endif %}>
{% comment %} --- Teaser for GRID view --- {% endcomment %}
{% if include.type == "grid" and teaser %}
<div class="archive__item-teaser">
<img src="{{ teaser | relative_url }}" alt="">
</div>
{% endif %}
{% if teaser and include.type != "grid"%}
<div class="archive__item-teaser-list">
<img src="{{ teaser | relative_url }}" alt="">
{% comment %} --- Teaser for LIST view (and other non-grid types) --- {% endcomment %}
{% if teaser and include.type != "grid" %}
<div class="archive__item-teaser-list" style="margin-right: 1em; flex-shrink: 0;">
<img src="{{ teaser | relative_url }}" alt="" style="display: block;">
</div>
{% endif %}
<div style="display: block; float: inherit;">
<h2 class="archive__item-title no_toc" itemprop="headline">
{% comment %} --- Text content wrapper --- {% endcomment %}
<div {% if include.type != "grid" %} style="flex-grow: 1;" {% endif %} >
<h2 class="archive__item-title no_toc" itemprop="headline" style="text-align: left !important;">
{% if post.link %}
<a href="{{ post.link }}">{{ title }}</a> <a href="{{ post.url | relative_url }}" rel="permalink"><i class="fas fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a>
{% else %}
@ -31,7 +41,9 @@
{% endif %}
</h2>
{% include page__meta.html type=include.type %}
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description" style="text-align: left;">
{{ post.excerpt | markdownify | strip_html | truncate: 160 }}
</p>{% endif %}
</div>
</article>
</div>