view static/tpl/category.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 13249e5ca51c
children
line wrap: on
line source

<article>
    <header>
        <h1>{{query.category}} <span class="decorator">Category</span></h1>
    </header>
    <section>
        {{content}}
        <h2>Pages in category "{{query.category}}"</h2>
        <ul class="list-category">
        {{#each pages}}
        <li><a href="{{get_read_url url}}">{{title}}</a></li>
        {{/each}}
        </ul>
    </section>
    <footer>
    </footer>
</article>