view static/tpl/inlinks-page.html @ 60:8250c977bc50

Moved static files to the root directory.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 05 Feb 2013 14:49:34 -0800
parents wikked/static/tpl/inlinks-page.html@9658edea3121
children b03f083c3a29
line wrap: on
line source

<article class="row">
    <div class="page span12">
        <h1>{{meta.title}} <span class="decorator">Incoming Links</span></h1>
        <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="/#/edit/{{url}}">{{url}}</a>
                {{else}}
                <a class="wiki-link" href="/#/read/{{url}}">{{title}}</a>
                {{/if}}
            </li>
        {{/each}}
        </ul>
    </div>
</article>