view static/tpl/search-results.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 827e236aa7c6
children f32af0888382
line wrap: on
line source

<article>
    <header>
        <h1>Search Results</h1>
    </header>
    <section>
        {{#if is_instant}}
        <p><small>Press <code>Escape</code> to cancel.</small></p>
        {{/if}}
        {{#if hits}}
        <ul class="search-results">
            {{#each hits}}
            <li>
            <h3><a href="{{get_read_url url}}">{{title}}</a></h3>
            <div class="highlighted"><pre><code>{{{content_highlights}}}</code></pre></div>
            </li>
            {{/each}}
        </ul>
        {{else}}
        <p>No matches found.</p>
        {{/if}}
    </section>
</article>