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文字以内のものにしてください。

12345678910111213
  1. <% stores.forEach(function(item){ %>
  2. <div class="modal <%= item.modalclass %>">
  3. <div class="modal-content">
  4. <form class="store-add-form">
  5. <label for="storeitemname">
  6. <%= item.title %>:
  7. </label>
  8. <input type="text" name="storeitemname" />
  9. <button class="pure-button" emit="<%= item.addevent %>">Submit</button>
  10. </form>
  11. </div>
  12. </div>
  13. <% }); %>