Skip to content

Instantly share code, notes, and snippets.

@fleeting
Created June 11, 2013 20:56
Show Gist options
  • Save fleeting/5760608 to your computer and use it in GitHub Desktop.
Save fleeting/5760608 to your computer and use it in GitHub Desktop.
{$menu = "testimonials"}
{include file="inc_header.tpl" page_title=$aTestimonial.title}
<h2>{$aTestimonial.title}</h2>
<article>
{if $aTestimonial.image == 1}
<figure>
<img class="testimonial-img" src="/image/testimonials/{$aTestimonial.id}/?width=156" alt="{$aTestimonial.name}">
</figure>
{elseif !empty($aTestimonial.youtube)}
<figure class="testimonial-youtube">
<iframe width="520" height="293" src="http://www.youtube.com/embed/{$aTestimonial.youtube}" frameborder="0" allowfullscreen></iframe>
</figure>
{/if}
{if !empty($aTestimonial.content)}
<blockquote class="larger-text">
{$aTestimonial.content}
</blockquote>
{/if}
<h4>- {$aTestimonial.sub_name} -</h4>
</article>
{include file="inc_footer.tpl"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment