File "content.php"
Full Path: /home/londdqdw/public_html/06/wp-content/plugins/the-events-calendar/src/views/list/content.php
File size: 2 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* List View Content Template
* The content template for the list view. This template is also used for
* the response that is returned on list view ajax requests.
*
* Override this template in your own theme by creating a file at [your-theme]/tribe-events/list/content.php
*
* @package TribeEventsCalendar
* @version 4.6.19
*
*/
if ( tec_events_views_v1_should_display_deprecated_notice() ) {
_deprecated_file( __FILE__, '5.13.0', null, 'On version 6.0.0 this file will be removed. Please refer to <a href="https://evnt.is/v1-removal">https://evnt.is/v1-removal</a> for template customization assistance.' );
}
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
} ?>
<div id="tribe-events-content" class="tribe-events-list">
<?php
/**
* Fires before any content is printed inside the list view.
*/
do_action( 'tribe_events_list_before_the_content' );
?>
<!-- Notices -->
<?php tribe_the_notices() ?>
<!-- List Header -->
<?php do_action( 'tribe_events_before_header' ); ?>
<div id="tribe-events-header" <?php tribe_events_the_header_attributes() ?>>
<!-- Header Navigation -->
<?php do_action( 'tribe_events_before_header_nav' ); ?>
<?php tribe_get_template_part( 'list/nav', 'header' ); ?>
<?php do_action( 'tribe_events_after_header_nav' ); ?>
</div>
<!-- #tribe-events-header -->
<?php do_action( 'tribe_events_after_header' ); ?>
<!-- Events Loop -->
<?php if ( have_posts() ) : ?>
<?php do_action( 'tribe_events_before_loop' ); ?>
<?php tribe_get_template_part( 'list/loop' ) ?>
<?php do_action( 'tribe_events_after_loop' ); ?>
<?php endif; ?>
<!-- List Footer -->
<?php do_action( 'tribe_events_before_footer' ); ?>
<div id="tribe-events-footer">
<!-- Footer Navigation -->
<?php do_action( 'tribe_events_before_footer_nav' ); ?>
<?php tribe_get_template_part( 'list/nav', 'footer' ); ?>
<?php do_action( 'tribe_events_after_footer_nav' ); ?>
</div>
<!-- #tribe-events-footer -->
<?php do_action( 'tribe_events_after_footer' ) ?>
</div><!-- #tribe-events-content -->