Skip to content

Commit

Permalink
use header image as thumbnail
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienReuiller committed Sep 18, 2024
1 parent 6a6d580 commit de6f34b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
9 changes: 2 additions & 7 deletions lemarche/templates/cms/article_item.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
{% load wagtailimages_tags %}
{% load inclusion_cms %}

<div class="fr-card fr-card--shadow fr-enlarge-link">
<div class="fr-card__body">
<div class="fr-card__content">
<h3 class="fr-card__title">
<a href="{{ article.url }}">{{ article.title }}</a>
</h3>
<p class="fr-card__desc">{{ article.specific.intro | truncatechars:200 }}</p>
<div class="fr-card__start">
{% show_article_categories_badges article %}
</div>
<div class="fr-card__start">{% show_article_categories_badges article %}</div>
</div>
</div>
<div class="fr-card__header">
<div class="fr-card__img">
{% image article.specific.image fill-655x388 class="fr-responsive-img" loading="lazy" %}
</div>
<div class="fr-card__img">{% image article.header_image fill-655x388 class="fr-responsive-img" loading="lazy" %}</div>
</div>
</div>
19 changes: 12 additions & 7 deletions lemarche/templates/dashboard/_ressource_card.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{% load static wagtailcore_tags wagtailimages_tags advert_cms %}

{% if user_kind == "BUYER" %}
{% cms_advert layout="fr-card" %}
{% endif %}

<div class="fr-card">
<div class="fr-card__body">
<div class="fr-card__content">
Expand All @@ -18,15 +16,21 @@ <h3 class="fr-card__title">
{% for ressource in ressources %}
<div class="fr-grid-row fr-grid-row--gutters{% if not forloop.last %} fr-mb-4v{% endif %}">
<div class="fr-col-3 fr-hidden fr-unhidden-lg">
{% if ressource.image %}
{% image ressource.image fill-100x60 as tmp_img %}
<img src="{{ tmp_img.url }}" width="100" height="60" alt="{{ tmp_img.alt }}" class="rounded" loading="lazy" />
{% if ressource.header_image %}
{% image ressource.header_image fill-100x60 as tmp_img %}
<img src="{{ tmp_img.url }}"
width="100"
height="60"
alt="{{ tmp_img.alt }}"
class="rounded"
loading="lazy" />
{% else %}
<img src="{% static "images/default-100x60.png" %}" alt="" width="100" height="60" class="rounded">
{% endif %}
</div>
<div class="fr-col-12 fr-col-lg-9">
<time aria-label="Date de publication">{{ ressource.last_published_at }}</time><br />
<time aria-label="Date de publication">{{ ressource.last_published_at }}</time>
<br />
<a href="{% pageurl ressource %}"><strong>{{ ressource.title }}</strong></a>
</div>
</div>
Expand All @@ -36,7 +40,8 @@ <h3 class="fr-card__title">
<div class="fr-card__footer">
<ul class="fr-btns-group--right fr-btns-group fr-btns-group--inline fr-btns-group--icon-right">
<li>
<a class="fr-btn fr-icon-arrow-right-s-line fr-btn--tertiary-no-outline" href="/ressources/{% if category_slug %}categories/{{ category_slug }}/{% endif %}">
<a class="fr-btn fr-icon-arrow-right-s-line fr-btn--tertiary-no-outline"
href="/ressources/{% if category_slug %}categories/{{ category_slug }}/{% endif %}">
Voir toutes les ressources
</a>
</li>
Expand Down

0 comments on commit de6f34b

Please sign in to comment.