diff options
| author | 2022-10-29 12:23:05 +0200 | |
|---|---|---|
| committer | 2022-10-29 12:23:05 +0200 | |
| commit | 270828aa6411b82af895bd672629a1664102f527 (patch) | |
| tree | 4bfcdb425b725b64381f9260a0dea64d1ac45567 /app | |
| parent | a7719d9b904aea86af66298bd6857ea761536365 (diff) | |
fixes jumping lines (#4782)
* fixes
* fix template
* fix frss.css
* fix Nord theme
Diffstat (limited to 'app')
| -rw-r--r-- | app/views/helpers/index/normal/entry_header.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/helpers/index/normal/entry_header.phtml b/app/views/helpers/index/normal/entry_header.phtml index 248ad4804..43eeb7f8a 100644 --- a/app/views/helpers/index/normal/entry_header.phtml +++ b/app/views/helpers/index/normal/entry_header.phtml @@ -50,7 +50,7 @@ <li class="item title<?= (($topline_thumbnail !== 'none') || $topline_summary) ? ' multiline' : '' ?>" dir="auto"><a target="_blank" rel="noreferrer" href="<?= $this->entry->link() ?>" class="item-element"><?= $this->entry->title() ?><?php if ($topline_display_authors): - ?><span class="item-element author"><?php + ?><span class="author"><?php $authors = $this->entry->authors(); if (is_array($authors)) { $first = true; @@ -62,7 +62,7 @@ ?></span><?php endif; if ($topline_summary): - ?><div class="item-element summary"><?= trim(mb_substr(strip_tags($this->entry->content()), 0, 500, 'UTF-8')) ?></div><?php + ?><div class="summary"><?= trim(mb_substr(strip_tags($this->entry->content()), 0, 500, 'UTF-8')) ?></div><?php endif; ?></a></li> <?php if ($topline_date) { ?><li class="item date"><time datetime="<?= $this->entry->machineReadableDate() ?>" class="item-element"><?= $this->entry->date() ?></time> </li><?php } ?> |
