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.
7 lines
460 B
7 lines
460 B
<menu user=input.user>
|
|
<menu-header>${input.story.name}</menu-header>
|
|
<for(chapter in input.story.chapters | status-var=loop)>
|
|
<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>
|
|
</for>
|
|
<menu-link dark key="_create" on-click("select", "add", null) icon="+">Add Chapter</menu-link>
|
|
</menu>
|