Skip to content

Instantly share code, notes, and snippets.

@palmiak
Created October 28, 2018 23:19
Show Gist options
  • Save palmiak/2862baeb6b49d012078ec51996bf8660 to your computer and use it in GitHub Desktop.
Save palmiak/2862baeb6b49d012078ec51996bf8660 to your computer and use it in GitHub Desktop.
{#
/**
* Block Name: Testimonial
*
* This is the template that displays the testimonial block.
*/
#}
<blockquote id="testimonial-{{ block.id }}" class="testimonial">
{{ fields.testimonial }}
<cite>
<span>{{ fields.author }}</span>
<img src="{{ Image( fields.avatar ) | resize( 150, 150 ) }}" alt="{{ Image( fields.avatar ).alt }}" />
</cite>
</blockquote>
<style type="text/css">
#testimonial-{{ block.id }} {
background: {{ fields.background_color }};
color: {{ fields.text_color }};
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment