view static/tpl/inlinks-page.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>{{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>