This commit is contained in:
2025-05-20 14:15:03 -07:00
parent c074a5ef18
commit edcad561a5
179 changed files with 52733 additions and 4704 deletions

18
tpl/testimonial-block.tpl Normal file
View File

@@ -0,0 +1,18 @@
<div class="testimonial">
<div class="stars stars-{{rating}}">&nbsp;</div>
<p class="quote">&ldquo;{{ quote }}&rdquo;</p>
<div class="person-details">
<div class="image-wrapper">
{{#if thumbnail}}
<img src="{{ thumbnail }}" alt="{{ title }}" />
{{else}}
<img src="{{#assetUrl lady-face.jpg }}" alt="{{ title }}" />
{{/if}}
</div>
<div class="details">
<p class="name">{{ title }}</p>
<p class="position">{{ position }}</p>
</div>
</div>
</div>