-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Description
`<article class="mb-5">
<div class="row">
<div class="col-md-5">
{% if article.featuredImage %}
<a href="{{ path('articles.show', {slug:article.slug }) }}">
<img src="/uploads/{{ article.featuredImage.filename }}" alt="{{ article.featuredImage.altText }}" loading="lazy" width="350" height="205" >
</a>
{% endif %}
</div>
<div class="col-md-7">
<h2><a class="text-decoration-none" href="{{ path('articles.show', {slug: article.slug }) }}"> {{article.title}} </a></h2>
<span> {{ article.createdAt|date('d-M-Y')}} </span>
<p> {{ article.featuredText ?: article.content|striptags|slice(0, 130) ~ '...' }}</p>
</div>
</div>
</article>`
Metadata
Metadata
Assignees
Labels
No labels