source: trunk/themes/default/template/menubar_menu.tpl @ 5178

Last change on this file since 5178 was 5178, checked in by rvelices, 14 years ago

-fix language keys problems

  • Property svn:eol-style set to LF
File size: 937 bytes
Line 
1<dt>{'Menu'|@translate}</dt>
2<dd>
3  {if isset($block->data.qsearch) and  $block->data.qsearch==true}
4    <form action="{$ROOT_URL}qsearch.php" method="get" id="quicksearch" onsubmit="return this.q.value!='' && this.q.value!=qsearch_prompt;">
5      <p style="margin:0;padding:0"{*this <p> is for html validation only - does not affect positioning*}>
6        <input type="text" name="q" id="qsearchInput" onfocus="if (value==qsearch_prompt) value='';" onblur="if (value=='') value=qsearch_prompt;" style="width:90%">
7      </p>
8    </form>
9    <script type="text/javascript">var qsearch_prompt="{'Quick search'|@translate|@escape:'javascript'}"; document.getElementById('qsearchInput').value=qsearch_prompt;</script>
10  {/if}
11
12        <ul>
13        {foreach from=$block->data item=link}
14                {if is_array($link)}
15                        <li><a href="{$link.URL}" title="{$link.TITLE}" {if isset($link.REL)}{$link.REL}{/if}>{$link.NAME}</a></li>
16                {/if}
17        {/foreach}
18        </ul>
19</dd>
20
Note: See TracBrowser for help on using the repository browser.