11 lines
416 B
Handlebars
11 lines
416 B
Handlebars
{{#if chapters}}
|
|
{{#each chapters}}
|
|
<div class="chapter-item {{#if (eq this.filename ../selectedChapter.filename)}}selected{{/if}}" data-chapter-url="{{this.url}}">
|
|
<a href="/book/{{../selectedBook.name}}/chapter/{{this.filename}}">{{this.displayName}}</a>
|
|
</div>
|
|
{{/each}}
|
|
{{else}}
|
|
{{#if selectedBook}}
|
|
<div class="error">No chapters available for this book</div>
|
|
{{/if}}
|
|
{{/if}} |