GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Fork of halorgium/mephisto
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/zmack/mephisto.git
technoweenie (author)
Sat Feb 02 14:21:11 -0800 2008
commit  fffccc683c18929095b8a12994674ef44372bf9f
tree    b2983da3f0332be9dd6b66f281a6201e22d9ef0c
parent  1ea0042daa461e7d36f8367740ec8a36d2fc3e0e
mephisto / themes / default / templates / search.liquid
100644 31 lines (25 sloc) 0.846 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 you were looking for.</p>
        </div>
      </div>
      
      <div class="clear"></div>
  </div>
</div>