Advertisement
Northys

Untitled

Apr 6th, 2014
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.20 KB | None | 0 0
  1. <ul id="main-menu" class="">
  2. <!-- add class "multiple-expanded" to allow multiple submenus to open -->
  3. <!-- class "auto-inherit-active-class" will automatically add "active" class for parent elements who are marked already with class "active" -->
  4. <!-- Search Bar -->
  5. <li id="search">
  6.     <form method="get" action="">
  7.         <input type="text" name="q" class="search-input" placeholder="Search something..."/>
  8.         <button type="submit">
  9.             <i class="entypo-search"></i>
  10.         </button>
  11.     </form>
  12. </li>
  13. <li n:class="$presenter->isLinkCurrent('Overview:*') ? active">
  14.     <a n:href="Overview:default">
  15.         <i class="entypo-gauge"></i>
  16.         <span>{_admin.overview}</span>
  17.     </a>
  18. </li>
  19. <!------------------------------------------
  20. TOHLE JE TO PODSTATNÉ
  21. ------------------------------------------!>
  22. {include '../modules/MessagesModule/menu.latte'}
  23. <li>
  24.    <a n:href="Settings:default">
  25.        <i class="entypo-flow-tree"></i>
  26.        <span>{_admin.settings}</span>
  27.    </a>
  28.    <ul>
  29.        <li>
  30.            <a href="#">
  31.                <i class="entypo-flow-line"></i>
  32.                <span>Menu Level 1.1</span>
  33.            </a>
  34.        </li>
  35.    </ul>
  36. </li>
  37. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement