Project

General

Profile

Download (512 Bytes) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/**
3
 * @file
4
 * Returns the HTML for Panels Everywhere's navigation pane.
5
 *
6
 * Complete documentation for this file is available online.
7
 * @see https://drupal.org/node/2052513
8
 */
9
?>
10
<?php if (!empty($main_menu)): ?>
11
  <nav id="main-menu" role="navigation" tabindex="-1">
12
    <?php print $main_menu; ?>
13
  </nav>
14
<?php endif; ?>
15

    
16
<?php if (!empty($secondary_menu)): ?>
17
  <nav id="secondary-menu" role="navigation">
18
    <?php print $secondary_menu; ?>
19
  </nav>
20
<?php endif; ?>
21

    
22
<?php print $breadcrumb; ?>
(11-11/17)