Skip to content

Commit

Permalink
replace invalid blockquote usage
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpapst committed Dec 6, 2024
1 parent c440a8e commit 2eca152
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions _includes/pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ <h2 class="h1 mb-4">{{ site.data[page.lang].translation.about-who }}</h2>
<span class="btn btn-icon btn-primary btn-lg shadow-primary pe-none position-absolute top-0 start-0 translate-middle-y ms-4 ms-lg-5">
<i class="bx bxs-quote-left"></i>
</span>
<blockquote class="card-body mt-2 mb-0">
<div class="card-body mt-2 mb-0">
<p class="fs-lg">
{% if site.data[page.lang].translation.developer.kevinpapst.intro %}
{{ site.data[page.lang].translation.developer.kevinpapst.intro | markdownify }}
{% else %}
{{ author.description }}
{% endif %}
</p>
</blockquote>
</div>
<figcaption class="card-footer border-0 d-sm-flex pt-0 mt-n3 mt-lg-0">
<div class="d-flex align-items-center border-end-sm pe-sm-4 me-sm-4">
<img src="{{ author.image }}" width="48" class="d-md-none rounded-circle" alt="Ralph Edwards">
Expand Down
4 changes: 2 additions & 2 deletions _includes/testimonials-horizontal-swipe.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ <h2 class="h1 text-center pb-2 pb-md-3 pb-xl-4">{{ title }}</h2>
<span class="btn btn-icon btn-primary shadow-primary pe-none position-absolute top-0 start-0 translate-middle-y ms-4">
<i class="bx bxs-quote-left"></i>
</span>
<blockquote class="card-body pb-3 mb-0">
<div class="card-body pb-3 mb-0">
<div class="mb-0">
{% if include.language and testimonial.translations[include.language] %}
{{ testimonial.translations[include.language] | markdownify }}
{% else %}
{{ testimonial.text | markdownify }}
{% endif %}
</div>
</blockquote>
</div>
<div class="card-footer border-0 text-nowrap pt-0">
{% for i in (1..testimonial.rating) %}
<i class="bx bxs-star text-warning"></i>
Expand Down
4 changes: 2 additions & 2 deletions _includes/testimonials-slider.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ <h2 class="text-center text-md-start mx-auto mx-md-0 pt-md-2" style="max-width:
<span class="btn btn-icon btn-primary shadow-primary pe-none position-absolute top-0 start-0 translate-middle-y ms-4">
<i class="bx bxs-quote-left"></i>
</span>
<blockquote class="card-body pb-4 mb-0">
<div class="card-body pb-4 mb-0">
<div class="text-nowrap pt-1 mb-3">
{% for i in (1..testimonial.rating) %}
<i class="bx bxs-star text-warning"></i>
{% endfor %}
</div>
{{ testimonial.text | markdownify }}
</blockquote>
</div>
<div class="card-footer d-flex align-items-center border-0 pt-0">
{% if testimonial.avatar == '' %}
{{ site.avatar_fallback }}
Expand Down

0 comments on commit 2eca152

Please sign in to comment.