File: /var/www/lipovac/wp-content/plugins/the-events-calendar/src/views/v2/top-bar/nav.php
<?php
/**
* View: Top Bar - Navigation
*
* Override this template in your own theme by creating a file at:
* [your-theme]/tribe/events/views/v2/top-bar/nav.php
*
* See more documentation about our views templating system.
*
* @link {INSERT_ARTCILE_LINK_HERE}
*
* @version 4.9.4
*
*/
?>
<nav class="tribe-events-c-top-bar__nav">
<ul class="tribe-events-c-top-bar__nav-list">
<?php
if ( ! empty( $prev_url ) ) {
$this->template( 'top-bar/nav/prev', [ 'link' => $prev_url ] );
} else {
$this->template( 'top-bar/nav/prev-disabled' );
}
?>
<?php
if ( ! empty( $next_url ) ) {
$this->template( 'top-bar/nav/next', [ 'link' => $next_url ] );
} else {
$this->template( 'top-bar/nav/next-disabled' );
}
?>
</ul>
</nav>