Skip to content

Commit

Permalink
fix from review
Browse files Browse the repository at this point in the history
  • Loading branch information
Anne-Laure de Boissieu committed May 3, 2021
1 parent d60ecd9 commit fa60d96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion content/technologies/symfony.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title:
- "Nous utilisons Symfony"
- "pour créer des applications robustes"
titleSeo: "Développement Symfony : nous créons des applicatifs et projets web robustes et évolutifs 💪"
metaDescription : "Pourquoi faire confiance à Elao et Symfony, en choisir ce framework pour le développement de son logiciel ou application ? On vous dit tout 😎"
metaDescription : "Pourquoi faire confiance à Elao et Symfony, en choisissant ce framework pour le développement de son logiciel ou application ? On vous dit tout 😎"
---

Pour nos développements backend, nous nous appuyons sur **Symfony, un framework PHP largement plébiscité par la communauté**.
Expand Down
4 changes: 2 additions & 2 deletions templates/technology/technology.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<h2 class="h2--dash">Projets créés avec {{ technology.name }}</h2>
<ul class="article-list">
{% for caseStudy in caseStudies %}
<li class="miniature" data-aos="fade-in" data-aos-delay="{{ loop.index * 150 }}">
<li class="miniature" data-aos="fade-in" data-aos-delay="{{ (loop.index / 4)|round(0, 'ceil') * 150 }}">
<a href="{{ path('case_study', { caseStudy: caseStudy.slug }) }}" class="miniature__image">
<span class="image" style="{{ macros.backgroundImageSrcset(caseStudy.images|first, 'case_study_thumbnail.md') }}"></span>
</a>
Expand All @@ -61,7 +61,7 @@
<h2 class="h2--dash">Articles liés à {{ technology.name }}</h2>
<ul class="article-list">
{% for article in articles %}
<li class="miniature" data-aos="fade-in" data-aos-delay="{{ loop.index * 150 }}">
<li class="miniature" data-aos="fade-in" data-aos-delay="{{ (loop.index / 4)|round(0, 'ceil') * 150 }}">
<a href="#" class="miniature__image">
<span class="image" style="{{ macros.backgroundImageSrcset(article.thumbnail, 'article_thumbnail.sm') }}"></span>
</a>
Expand Down

0 comments on commit fa60d96

Please sign in to comment.