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个字符

35 行
1.0KB

  1. <%- include('head.html'); %>
  2. <%- include('modal.html'); %>
  3. <%- include('header.html'); %>
  4. <div class="pure-g pure-g-nw">
  5. <div class="pure-u-2-24 simple-padding">
  6. <%- include('tools.html', {
  7. toolbtns:[
  8. {emitargs:'{"id":"Welcome"}', faicon:"fa-brush"},
  9. {emitargs:'{"id":"Welcome"}', faicon:"fa-eraser"},
  10. {emitargs:'{"id":"Welcome"}', faicon:"fa-eye-dropper"}
  11. ]
  12. }); %>
  13. </div>
  14. <div class="pure-u-16-24">
  15. <%- include('workspace.html'); %>
  16. </div>
  17. <div class="pure-u-6-24 simple-padding">
  18. <%- include('docks.html', {
  19. tabsetname:"assetlists",
  20. tabs:[
  21. {name:"Palettes", id:"palettes", tmpl:"paletteListItem.html", selected:true},
  22. {name:"Banks", id:"banks", selected:false},
  23. {name:"Attrib. Tables", id:"attrtbls", selected:false}
  24. ]
  25. }); %>
  26. </div>
  27. </div>
  28. <%- include('footer.html', {version:version, author:author}); %>
  29. <%- include('tail.html'); %>