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.

6 lines
460 B

6 years ago
6 years ago
  1. <menu user=input.user>
  2. <menu-header>${input.story.name}</menu-header>
  3. <for(chapter in input.story.chapters | status-var=loop)>
  4. <menu-link key=chapter.id on-click("select", "chapter", chapter.id) href=("#" + chapter.id) selected=(state.selectedChapter === chapter.id) icon=(loop.getIndex()+1)>${component.chapterTitle(chapter)}</menu-link>
  5. </for>
  6. <menu-link dark key="_create" on-click("select", "add", null) icon="+">Add Chapter</menu-link>
  7. </menu>