<%%= content_for :base_sitemap do %>
<a href="<%%= <%= plural_table_name %>_path %>"><%= plural_table_name %></a> »
<%% end %>
<%%= content_for :styles do %>
<%% end %>
<%%= spaceless do %>
<div class="tools">
<a href="<%%= <%= plural_table_name %>_path %>" class="button small left<%%= ' checked' if params[:action] == "index" %>">查看所有</a>
<%% if ["edit","update"].index(params[:action]) %>
<a href="#" class="button small checked">编辑</a>
<%% end %>
<a href="<%%= new_<%= singular_table_name %>_path %>" class="button small right<%%= ' checked' if ["new","create"].index(params[:action]) %>">新建</a>
</div>
<%% end %>
这是者也里面的一个_base.html.erb 文件的代码,里面出现了很多<%% ... %>这样的代码,而其他的_base.html.erb 都是以一个百分号开头的,请问这两个百分号和一个百分号的区别是什么?