blob: 96dfde172504bfc39238d51ae22f86872fa4f964 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<div class="card">
<h2>{{ name }}</h2>
<h3>{{ title }}</h3>
{% if stars > 0 %}
{% for star in 0..stars %}
<img src="/assets/icons/star-box.svg" alt="star" />
{% endfor %}
{% else %}
<em>Email testimonial</em>
{% endif %}
<blockquote>
{{ quote }}
</blockquote>
<p>
<a href="https://g.page/carpenter-tutoring/review?np">Leave a review</a>
</p>
</div>
|