view wikked/assets/tpl/special-orphans.html @ 161:f307d4cdc3fb

Setup Wikked Pypi package: - Moved all assets into `wikked/assets` for proper packaging. - Added `setuptools` stuff.
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 10 Jan 2014 23:12:10 -0800
parents static/tpl/special-orphans.html@74eb145eb839
children 7b9f0eed8ced
line wrap: on
line source

<article>
    <header>
        <h1>Orphaned Pages</h1>
    </header>
    <section>
        <p>The following pages are not linked to by any other page in the wiki.</p>
        <p><span class="label label-info">Note</span> The main page can occasionally show up here but that's OK since it's the page visitors will see first anyway.</p>
        {{#if orphans}}
        <ul>
        {{#each orphans}}
            <li><a href="{{get_read_url meta.url}}">{{meta.title}}</a></li>
        {{/each}}
        </ul>
        {{else}}
        <p>No orphaned pages!</p>
        {{/if}}
    </section>
</article>