source: branches/2.1/themes/default/template/search_rules.tpl @ 7824

Last change on this file since 7824 was 7824, checked in by rvelices, 13 years ago

merge r7823 from trunk to branch 2.1
homogenuous popuphelp and search_rules templates with the rest of pages
simplification of CSS rules

  • Property svn:eol-style set to LF
File size: 1.2 KB
Line 
1<div id="content" class="content">
2  <div class="titrePage">
3        <ul class="categoryActions">
4          <li>
5                <a href="#" onclick="window.close();" title="{'Close this window'|@translate}">
6                  <img src="{$ROOT_URL}{$themeconf.icon_dir}/exit.png" class="button" alt="exit">
7                </a>
8          </li>
9        </ul>
10  <h2>{'Search rules'|@translate}</h2>
11  </div>
12
13{if isset($INTRODUCTION) }
14<p>{$INTRODUCTION}</p>
15{/if}
16
17<ul>
18
19  {if isset($search_words) }
20  {foreach from=$search_words item=v}
21  <li>{$v}</li>
22  {/foreach}
23  {/if}
24
25  {if isset($SEARCH_TAGS_MODE) }
26  <li>
27    <p>{if 'AND'==$SEARCH_TAGS_MODE}{'At least one tag must match'|@translate}{else}{'At least one tag must match'|@translate}{/if}</p>
28    <ul>
29      {foreach from=$search_tags item=v}
30      <li>{$v}</li>
31      {/foreach}
32    </ul>
33  </li>
34  {/if}
35 
36  {if isset($DATE_CREATION) }
37  <li>{$DATE_CREATION}</li>
38  {/if}
39
40  {if isset($DATE_AVAILABLE) }
41  <li>{$DATE_AVAILABLE}</li>
42  {/if}
43
44  {if isset($search_categories) }
45  <li>
46    <p>{'Categories'|@translate}</p>
47
48    <ul>
49      {foreach from=$search_categories item=v}
50      <li>{$v}</li>
51      {/foreach}
52    </ul>
53  </li>
54  {/if}
55 
56</ul>
57
58<p>
59    <a href="#" onclick="window.close();">{'Close this window'|@translate}</a>
60</p>
61
62</div> <!-- content -->
63
Note: See TracBrowser for help on using the repository browser.