A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
618B

  1. <div class="tabnav">
  2. <ul tabs="<%= tabsetname %>">
  3. <% tabs.forEach(function(item){ %>
  4. <li tabid="<%= item.id %>"><a href="#"><%= item.name %></a></li>
  5. <% }); %>
  6. </ul>
  7. <% tabs.forEach(function(item){ %>
  8. <div class="tab-content" fortabs="<%= tabsetname %>" tabid="<%= item.id %>">
  9. <div class="list-container">
  10. <% if(item.hasOwnProperty("tmpl")){ %>
  11. <%- include(item.tmpl) %>
  12. <% } %>
  13. </div>
  14. </div>
  15. <% }); %>
  16. </div>