29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-27 07:33:41 +00:00

Revert "change ordered list in blog-links to unordered list (#40600)" (#40625)

This commit is contained in:
Olivier Buisard 2023-05-19 18:33:10 -04:00 committed by GitHub
parent e5db3adff3
commit c7646981bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,11 +15,11 @@ use Joomla\Component\Content\Site\Helper\RouteHelper;
?>
<ul class="com-content-blog__links">
<ol class="com-content-blog__links">
<?php foreach ($this->link_items as $item) : ?>
<li class="com-content-blog__link">
<a href="<?php echo Route::_(RouteHelper::getArticleRoute($item->slug, $item->catid, $item->language)); ?>">
<?php echo $item->title; ?></a>
</li>
<?php endforeach; ?>
</ul>
</ol>