view static/tpl/special-orphans.html @ 149:d29e2f337b00

Updated to Bootstrap 3.0.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 12 Dec 2013 21:54:04 -0800
parents 74eb145eb839
children
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>