The frontend/UI server, written in JS using the MarkoJS library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
377 B

  1. <div class="modal-wrapper">
  2. <if(input.enabled)>
  3. <div class=["overlay", (input.notification ? "notification-overlay" : "normal-overlay")]>
  4. <div class="overlay-options color-menu">
  5. <div if(input.closable) on-click("closeModal")>Close</div>
  6. </div>
  7. <div class=input.class>
  8. <include(input.renderBody) />
  9. </div>
  10. </div>
  11. </if>
  12. </div>