view static/tpl/inlinks-page.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>{{meta.title}} <span class="decorator">Incoming Links</span></h1>
    </header>
    <section>
        <p>The following pages link to <a href="{{url_read}}">{{meta.title}}</a>:</p>
        <ul>
        {{#each in_links}}
            <li>
                {{#if missing}}
                <a class="wiki-link missing" href="{{get_edit_url url}}">{{url}}</a>
                {{else}}
                <a class="wiki-link" href="{{get_read_url url}}">{{title}}</a>
                {{/if}}
            </li>
        {{/each}}
        </ul>
    </section>
</article>