view static/tpl/special-orphans.html @ 89:b03f083c3a29

Lots of HTML/JS/Less changes: - more semantic and simple markup, no useless grid. - simpler colour schemes (TODO: colours are ugly, tune them). - better error handling in Backbone views. - fixed some view bugs. - changed new/modified page alert to a ribbon with tooltip.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 06 Apr 2013 18:07:31 -0700
parents 1d004c53f2b2
children 74eb145eb839
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="/#/read/{{meta.url}}">{{meta.title}}</a></li>
        {{/each}}
        </ul>
        {{else}}
        <p>No orphaned pages!</p>
        {{/if}}
    </section>
</article>