class Asciidoctor::DocBook45::BlockQuoteTemplate

def template

def template
  @template ||= @eruby.new <<-EOF
#encoding:UTF-8%><blockquote#{id}#{role}#{xreflabel}>
#{title}
<% if (attr? :attribution) || (attr? :citetitle) %>
<attribution>
  <% if attr? :attribution %>
  <%= attr(:attribution) %>
  <% end %>
  #{tag 'citetitle', :citetitle}
</attribution>
<% end %>
 if !buffer.nil? %>
impara><%= content %></simpara>
 else %>
= content %>
 end %>
blockquote>
  EOF
end