class Asciidoctor::HTML5::InlineFootnoteTemplate

def template

def template
  @template ||= @eruby.new <<-EOS
#encoding:UTF-8%><%
 @type == :xref
<span class="footnoteref">[<a class="footnote" href="#_footnote_<%= attr :index %>" title="View footnote."><%= attr :index %></a>]</span><%
se
<span class="footnote"<% if @id %> id="_footnote_<%= @id %>"<% end %>>[<a id="_footnoteref_<%= attr :index %>" class="footnote" href="#_footnote_<%= attr :index %>" title="View footnote."><%= attr :index %></a>]</span><%
d %>
  EOS
end