public
Fork of halorgium/mephisto
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/technoweenie/mephisto.git
Click here to lend your support to: mephisto and make a donation at www.pledgie.com !
octopod (author)
Sat Jan 05 13:04:38 -0800 2008
technoweenie (committer)
Sat Feb 02 14:18:05 -0800 2008
commit  1ea0042daa461e7d36f8367740ec8a36d2fc3e0e
tree    57a4abb3b3d2249f733a30577031ddd4bb2aea9d
parent  badeb2d4e4e49a389091ba7bcd44c49ca9c88684
mephisto / themes / default / templates / search.liquid
100644 31 lines (25 sloc) 0.842 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  <div id="primary" class="single-post">
    <div class="inside">
      <div class="primary">
        <h1>Search results for <em>"{{search_string}}"</em></h1>
        <ul class="dates">
          {% for article in articles %}
            <li>
              <span class="date">{{article.published_at | date: '%d.%m.%y' }}</span>
              {{ article | link_to_search_result }} posted in
              {% for section in article.sections %}
                {{section | link_to_section }}
              {% endfor %}
            </li>
          {% endfor %}
        </ul>
      </div>
      
    
       <div class="secondary">
          <h2>Your search results</h2>
          <div class="featured">
            <p>We hope you found the results your looking for.</p>
        </div>
      </div>
      
      <div class="clear"></div>
  </div>
</div>