bentlegen / reddish

A blogging theme for Mephisto

This URL has Read+Write access

Joel Chippindale (author)
Mon May 26 08:39:08 -0700 2008
commit  659a2b17f03d95c5cac8f0ba2939c9213c691cc1
tree    9241244af0a8afc00fbd5f6c8a791bb6de3547f5
parent  01cd01848255b189dc33a9143fe16100d62cf2bd
reddish / templates / search.liquid
100644 10 lines (9 sloc) 0.373 kb
1
2
3
4
5
6
7
8
9
10
<h2>The search for &#147;{{ search_string}}&#148; returned {{ search_count | pluralize: 'result' }}:</h2>
 
{% if articles.size > 0 %}
<dl>
{% for article in articles %}
  <dt><b>{{ article | link_to_article }}</b></dt>
  <dd><em>published by {{ article.author.login }} on {{ article.published_at | date: "%A, %B %d, %Y" }}<br/><br/></em></dd>
{% endfor %}
</dl>
{% endif %}