Skip to content

Commit

Permalink
remove invalid caption tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Floppy committed Nov 26, 2023
1 parent 7325506 commit fe98abe
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions _includes/testimonials.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@
<!-- Indicators -->
<ol class="carousel-indicators">
{% for testimonial in site.data.testimonials %}
<li data-target="#carousel" data-slide-to="{{forloop.index0}}" {% if forloop.first %} class="active"{% endif %}></li>
<li data-target="#carousel" data-slide-to="{{forloop.index0}}" {% if forloop.first %} class="active" {% endif %}>
</li>
{% endfor %}
</ol>

<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
{% for testimonial in site.data.testimonials %}
<div class="item{% if forloop.first %} active{% endif %}" style='background: #7f7f7f; height: 180px'>
<div class="carousel-text">
<div>"{{ testimonial.quote }}"</div>
<caption><small><em>{{ testimonial.name }}</em></small></caption>
</div>
<div class="item{% if forloop.first %} active{% endif %}" style='background: #7f7f7f; height: 180px'>
<div class="carousel-text">
<div>"{{ testimonial.quote }}"</div>
<small><em>{{ testimonial.name }}</em></small>
</div>
</div>
{% endfor %}
</div>

Expand All @@ -27,4 +28,4 @@
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>

0 comments on commit fe98abe

Please sign in to comment.