source: extensions/simple_themes/simple/template/search_rules.tpl @ 13555

Last change on this file since 13555 was 13555, checked in by plg, 12 years ago

import theme Simple version 2.5

  • use media queries to adapt layout for small screens
  • remove arbitrary limit on width: the picture will simply be partially hidden if too wide
  • update password.tpl
  • add MENUBAR on all pages
  • Spelling correction in README
  • update url
  • bugfix for the feature 'open external links in new window' for menubar links
File size: 1.1 KB
Line 
1<div class="titrePage">
2  <ul class="categoryActions">
3    <li><a href="#" onclick="window.close();" title="{'Close this window'|@translate}">{'Close this window'|@translate}</a></li>
4  </ul>
5  <h2>{'Search rules'|@translate}</h2>
6</div>
7<div id="content">
8{if isset($MENUBAR)}{$MENUBAR}{/if}
9  {if isset($INTRODUCTION) }
10  <p>{$INTRODUCTION}</p>
11  {/if}
12  <ul>
13    {if isset($search_words) }
14    {foreach from=$search_words item=v}
15    <li>{$v}</li>
16    {/foreach}
17    {/if}
18    {if isset($SEARCH_TAGS_MODE) }
19    <li>
20    <p>{if 'AND'==$SEARCH_TAGS_MODE}{'At least one tag must match'|@translate}{else}{'At least one tag must match'|@translate}{/if}</p>
21      <ul>
22        {foreach from=$search_tags item=v}
23        <li>{$v}</li>
24        {/foreach}
25      </ul>
26    </li>
27    {/if}
28    {if isset($DATE_CREATION) }
29    <li>{$DATE_CREATION}</li>
30    {/if}
31    {if isset($DATE_AVAILABLE) }
32    <li>{$DATE_AVAILABLE}</li>
33    {/if}
34    {if isset($search_categories) }
35    <li>
36      <p>{'Albums'|@translate}</p>
37      <ul>
38        {foreach from=$search_categories item=v}
39        <li>{$v}</li>
40        {/foreach}
41      </ul>
42    </li>
43    {/if}
44  </ul>
45</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.