source: extensions/stripped_responsive/template/search_rules.tpl @ 31946

Last change on this file since 31946 was 29449, checked in by JanisV, 10 years ago

Initial commit

  • Property svn:executable set to *
File size: 1.5 KB
Line 
1<div class="titrePage">
2        <div class="browsePath">
3                <h2>{'Search rules'|@translate}</h2>
4        </div>
5        <div class="categoryActionsContainer">
6                <ul class="categoryActions">
7                        <li><a href="#" onclick="window.close();" title="{'Close this window'|@translate}" class="pwg-state-default pwg-button">
8                                <span class="pwg-icon pwg-icon-close">&nbsp;</span><span class="pwg-button-text">{'Close this window'|@translate}</span>
9                        </a></li>
10                </ul>
11        </div>
12</div>
13<div id="content">
14        <div id="content_cell">
15                <div class="content_block">
16                        {if isset($INTRODUCTION) }
17                                <p>{$INTRODUCTION}</p>
18                        {/if}
19                        <ul>
20                                {if isset($search_words) }
21                                        {foreach from=$search_words item=v}
22                                                <li>{$v}</li>
23                                        {/foreach}
24                                {/if}
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                                {if isset($DATE_CREATION) }
36                                        <li>{$DATE_CREATION}</li>
37                                {/if}
38                                {if isset($DATE_AVAILABLE) }
39                                        <li>{$DATE_AVAILABLE}</li>
40                                {/if}
41                                {if isset($search_categories) }
42                                        <li>
43                                                <p>{'Categories'|@translate}</p>
44                                                <ul>
45                                                        {foreach from=$search_categories item=v}
46                                                                <li>{$v}</li>
47                                                        {/foreach}
48                                                </ul>
49                                        </li>
50                                {/if}
51                        </ul>
52                </div>
53        </div>
54</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.