# File lib/asciidoctor/backends/html5.rb, line 653 def template @template ||= @eruby.new "<%#encoding:UTF-8%><% style = attr 'style', nil, false %><div\#{id} class=\"olist\#{style_class}\#{role_class}\">\n\#{title_div}\n<ol class=\"<%= style %>\"<%= (type = ::Asciidoctor::ORDERED_LIST_KEYWORDS[style]) ? %( type=\"\\\#{type}\") : nil %>\#{attribute('start', :start)}><%\ncontent.each do |item| %>\n<li>\n<p><%= item.text %></p><%\nif item.blocks? %>\n<%= item.content %><%\nend %>\n</li><%\nend %>\n</ol>\n</div>\n" end