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 body_classes %}page--testimonials{% endblock %}
{% block content %} {% block content %}
<h1>Testimonials</h1> <h1>Testimonials</h1>
<p>Here are some examples of the nice things that clients and former colleagues have said.</p> <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> <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"> <article class="testimonial">
<h2 class="testimonial__name">{{ testimonial.name }}</h2> <h2 class="testimonial__name">{{ testimonial.name }}</h2>
@ -86,5 +86,5 @@ testimonials:
{{ testimonial.text|raw }} {{ testimonial.text|raw }}
</article> </article>
{% endfor %} {% endfor %}
{% endblock %} {% endblock %}