view static/tpl/special-orphans.html @ 113:74eb145eb839

Fixed some problems with URLs in the front-end.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 16 Nov 2013 08:36:02 -0800
parents b03f083c3a29
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>