Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- global $avia_config;
- /*
- * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
- */
- get_header();
- $title = tribe_is_month() ? __('Calendar of Events', 'avia_framework') : tribe_get_events_title(false);
- $args = array('title'=> $title, 'link'=>'');
- if( !is_singular() || get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title($args);
- do_action( 'ava_after_main_title' );
- ?>
- <div class='container_wrap container_wrap_first main_color fullsize'>
- <div class='container'>
- <main class='template-page template-event-page content av-content-small units' <?php avia_markup_helper(array('context' => 'content','post_type'=>'page'));?>>
- <div id="tribe-events-pg-template">
- <?php
- tribe_events_before_html();
- tribe_get_view();
- tribe_events_after_html();
- ?>
- </div> <!-- #tribe-events-pg-template -->
- <!--end content-->
- </main>
- <?php
- $avia_config['currently_viewing'] = "page";
- //get the sidebar
- get_sidebar();
- ?>
- </div><!--end container-->
- </div><!-- close default .container_wrap element -->
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement