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