Skip to content

Commit

Permalink
removed last pieces of senja
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpapst committed Jul 22, 2024
1 parent a88aeaf commit 142d4fe
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion _includes/pages/pricing.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,14 @@ <h1 class="mb-4">{{ site.data[page.lang].translation.pricing.name }}</h1>
</section>

<section class="container mb-5 pt-md-1 pt-lg-2 pt-xl-3">
{% include testimonials-horizontal.html %}
{% assign testimonials = site.data.testimonials | where_exp: "item", "item.tags contains 'FeaturedShort'" %}
{% if page.lang == 'de' %}
{% assign testimonials = testimonials | where_exp: "item", "item.tags contains 'German'" %}
{% else %}
{% assign testimonials = testimonials | where_exp: "item", "item.tags contains 'English'" %}
{% endif %}
{% assign testimonials = testimonials | sample: 3 %}
{% include testimonials-horizontal.html testimonials=testimonials %}
</section>

<section class="container mb-5 pt-md-1 pt-lg-4 pt-xl-5">
Expand Down

0 comments on commit 142d4fe

Please sign in to comment.