class Asciidoctor::HTML5::BlockQuoteTemplate

def template

def template
  @template ||= @eruby.new <<-EOS
#encoding:UTF-8%>
iv#{id} class="quoteblock#{style_class}">
<% unless title.nil? %>
<div class="title"><%= title %></div>
<% end %>
<div class="content">
= content %>
</div>
<div class="attribution">
  <% if attr? :citetitle %>
  <em><%= attr :citetitle %></em>
  <% end %>
  <% if attr? :attribution %>
  <% if attr? :citetitle %>
  <br/>
  <% end %>
  <%= '&#8212; ' + attr(:attribution) %>
  <% end %>
</div>
div>
  EOS
end