Indenting

This commit is contained in:
Oliver Davies 2015-07-03 01:37:23 +01:00
parent abc42cf82d
commit 8ddb2edd31

View file

@ -63,11 +63,11 @@ testimonials:
{% block body_classes %}page--testimonials{% endblock %}
{% block content %}
<h1>Testimonials</h1>
<p>Here are some examples of the nice things that clients and former colleagues have said.</p>
<p>You can view more recommendations on my <a href="{{ site.linkedin.url }}">LinkedIn profile</a>.</p>
<h1>Testimonials</h1>
<p>Here are some examples of the nice things that clients and former colleagues have said.</p>
<p>You can view more recommendations on my <a href="{{ site.linkedin.url }}">LinkedIn profile</a>.</p>
{% for testimonial in page.testimonials|reverse|slice(0,5) %}
{% for testimonial in page.testimonials|reverse|slice(0,5) %}
<article class="testimonial">
<h2 class="testimonial__name">{{ testimonial.name }}</h2>
@ -86,5 +86,5 @@ testimonials:
{{ testimonial.text|raw }}
</article>
{% endfor %}
{% endfor %}
{% endblock %}