Create Home page
This commit is contained in:
commit
cd59c54aa8
18 changed files with 4006 additions and 0 deletions
25
source/_includes/testimonials.html.twig
Normal file
25
source/_includes/testimonials.html.twig
Normal file
|
@ -0,0 +1,25 @@
|
|||
<section>
|
||||
<h2>Testimonials</h2>
|
||||
|
||||
<div>
|
||||
{% for testimonial in site.testimonials %}
|
||||
<blockquote>
|
||||
{{ testimonial.text|markdown }}
|
||||
|
||||
{% if testimonial.image %}
|
||||
<img alt="Photo of {{ testimonial.name }}" src="{{ testimonial.image.url }}" />
|
||||
{% endif %}
|
||||
|
||||
<footer>
|
||||
{% if testimonial.url %}
|
||||
<a href="{{ testimonial.url }}">
|
||||
{{ testimonial.name }}, {{ testimonial.title }}
|
||||
</a>
|
||||
{% else %}
|
||||
{{ testimonial.name }}, {{ testimonial.title }}
|
||||
{% endif %}
|
||||
</footer>
|
||||
</blockquote>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</section>
|
Loading…
Add table
Add a link
Reference in a new issue