bbottema/js-epub-maker

View on GitHub
src/epub_templates/from_idpf_epub3/wasteland/EPUB/wasteland-nav.xhtml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
    xmlns:epub="http://www.idpf.org/2007/ops">
    <head>
        <meta charset="utf-8"></meta>        
        <link rel="stylesheet" type="text/css" href="{{slug}}.css" class="day" title="day"/> 
    </head>
    <body>
        <nav epub:type="toc" id="toc">
            <ol>
                {{#each toc}}
                <li><a href="{{../slug}}-content.xhtml#{{id}}">{{content.title}}</a></li>
                {{/each}}
            </ol>            
        </nav>
        <nav epub:type="landmarks">
            <ol>
                {{#each landmarks}}
                <li><a epub:type="{{epubType}}" href="{{../slug}}-content.xhtml#{{id}}">{{#if content.title}}{{content.title}}{{else}}{{epubType}}{{/if}}</a></li>
                {{/each}}
            </ol>
        </nav>
    </body>
</html>