class Asciidoctor::HTML5::BlockAdmonitionTemplate

def template

def template
  @template ||= @eruby.new <<-EOS
#encoding:UTF-8%><div#{id} class="admonitionblock#{role_class}">
<table>
  <tr>
    <td class="icon">
      <% if attr? :icons %>
      <img src="<%= icon_uri(attr :name) %>" alt="<%= attr :caption %>">
      <% else %>
      <div class="title"><%= attr :caption %></div>
      <% end %>
    </td>
    <td class="content">
      #{title_div}
      <%= content %>
    </td>
  </tr>
</table>
div>
  EOS
end