<span><a> => only <a>

This commit is contained in:
math-gh 2024-05-09 13:44:24 +02:00
parent fa731db286
commit bbe3735a4c
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@
?></li><?php
endif; ?>
<li class="item titleAuthorSummaryDate">
<span class="item-element title<?= (($topline_thumbnail !== 'none') || $topline_summary) ? ' multiline' : '' ?>" dir="auto"><a target="_blank" rel="noreferrer" href="<?= $this->entry->link() ?>"><?= $this->entry->title() ?><?php
<a target="_blank" rel="noreferrer" href="<?= $this->entry->link() ?>" class="item-element title<?= (($topline_thumbnail !== 'none') || $topline_summary) ? ' multiline' : '' ?>" dir="auto"><?= $this->entry->title() ?><?php
if ($topline_display_authors):
?><span class="author"><?php
$authors = $this->entry->authors();
@ -65,7 +65,7 @@
}
?></span><?php
endif;
?></a></span>
?></a>
<?php
if ($topline_summary):
?><div class="summary"><?= trim(mb_substr(strip_tags($this->entry->content(false)), 0, 500, 'UTF-8')) ?></div><?php