A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

docks.html 1.0KB

12345678910111213141516171819202122232425262728
  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="simple-padding">
  10. <% if (item.hasOwnProperty("addevent")){ %>
  11. <button class="pure-button" <% if (item.hasOwnProperty("addbtntt")){ %>title="<%= item.addbtntt %>"<% } %> emit="modal-open" emit-args='{"cls":"<%= item.addevent %>"}'>
  12. <i class="fa fa-plus-circle"></i>
  13. </button>
  14. <% } %>
  15. <% if (item.hasOwnProperty("remevent")){ %>
  16. <button class="pure-button" <% if (item.hasOwnProperty("rembtntt")){ %>title="<%= item.rembtntt %>"<% } %> emit="<%= item.remevent %>">
  17. <i class="fa fa-trash-alt"></i>
  18. </button>
  19. <% } %>
  20. </div>
  21. <div class="list-container">
  22. <% if(item.hasOwnProperty("tmpl")){ %>
  23. <%- include(item.tmpl) %>
  24. <% } %>
  25. </div>
  26. </div>
  27. <% }); %>
  28. </div>