Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: L'image de la section Ecosystème ne change pas #1149

Merged
merged 3 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lemarche/templates/cms/streams/section_ecosystem.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{% load static %}
{% load wagtailimages_tags %}

<section class="bg-gray-light py-5">
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-8 my-sm-auto">
<img src="{% static 'images/hp-logos-labels.min.png' %}" class="img-fluid" loading="lazy" alt="Logos de différents labels et certifications">
{% image self.image original class="card-img-top" class="img-fluid" loading="lazy" %}
</div>
<div class="col-sm-6 col-md-4 my-4 my-sm-auto">
<h2 class="h2 mb-3 mb-lg-5">{{self.title}}</h2>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{% load wagtailcore_tags wagtailimages_tags %}
{% load wagtailimages_tags %}

<div class="col-sm-6 col-md-3 my-4 my-sm-auto">
<div class="card c-card has-one-link-inside">
{% image self.image original class="card-img-top" alt="" %}
{% image self.image original class="card-img-top" %}
<div class="card-body">
<a href="{{ self.link }}" class="btn btn-link text-left pl-0 stretched-link">
{{ self.title }}
Expand Down
2 changes: 1 addition & 1 deletion lemarche/templates/cms/streams/section_testimonials.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% load wagtailimages_tags %}

<section class="s-hp-slider-partners-tenders bg-gray-light">
<section class="s-hp-slider-partners-tenders">
<div class="s-hp-slider-partners-tenders__container container">
<div class="s-hp-slider-partners__row row">
<div class="col-12">
Expand Down
Loading