vivo/themes/wilma/templates/menu.ftl

30 lines
1.3 KiB
Text
Raw Normal View History

<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
</header>
<nav role="navigation">
<ul id="main-nav" role="list">
<#list menu.items as item>
2013-04-27 16:39:02 -06:00
<li role="listitem"><a href="${item.url}" title="${item.linkText} ${i18n().menu_item}" <#if item.active> class="selected" </#if>>${item.linkText}</a></li>
</#list>
</ul>
</nav>
<div id="wrapper-content" role="main">
<#if flash?has_content>
2013-04-27 16:39:02 -06:00
<#if flash?starts_with(i18n().menu_welcomestart) >
2011-01-19 14:53:18 +00:00
<section id="welcome-msg-container" role="container">
<section id="welcome-message" role="alert">${flash}</section>
</section>
<#else>
<section id="flash-message" role="alert">
${flash}
</section>
</#if>
2011-02-16 15:16:54 +00:00
</#if>
<!--[if lte IE 8]>
<noscript>
<p class="ie-alert">This site uses HTML elements that are not recognized by Internet Explorer 8 and below in the absence of JavaScript. As a result, the site will not be rendered appropriately. To correct this, please either enable JavaScript, upgrade to Internet Explorer 9, or use another browser. Here are the <a href="http://www.enable-javascript.com" title="java script instructions">instructions for enabling JavaScript in your web browser</a>.</p>
2011-02-16 15:16:54 +00:00
</noscript>
<![endif]-->