Current Path : /var/www/html/wp-content/themes/church-event/templates/shortcodes/events/ |
Current File : /var/www/html/wp-content/themes/church-event/templates/shortcodes/events/classic.php |
<?php $tag = (int)$count == 1 ? 'span' : 'div'; ?> <?php foreach($events as $event): ?> <div class="classic-event-wrapper"> <div class="row"> <div class="grid-1-3"> <?php if ( ! empty( $lead_text ) ): ?> <h4 class="lead-wrapper"><?php echo wpv_shortcode_icon( array( 'name' => 'calendar2' ) ) // xss ok ?> <span class="lead"><?php echo $lead_text //xss ok ?></span></h4> <?php endif ?> <h3 class="event-title"><a href="<?php echo tribe_get_event_link( $event ) ?>" title="<?php esc_attr_e( 'Read More', 'church-event' ) ?>"><?php echo $event->post_title // xss ok ?></a></h3> </div> <div class="grid-2-3"> <span class="wpv-countdown single-event style-<?php echo esc_attr( $style ) ?> layout-<?php echo esc_attr( $layout ) ?>" data-until="<?php echo esc_attr( tribe_format_date( Tribe__Events__Timezones::event_start_timestamp( $event->ID ), true, 'c' ) ) ?>" data-done="<?php echo esc_attr( $ongoing ) ?>"> <?php $split = true; include locate_template( 'templates/countdown-parts.php' ); ?> </span> <div class="split"></div> <a href="<?php echo tribe_get_event_link( $event ) ?>" title="<?php esc_attr( $read_more_text ) ?>" class="vamtam-button button accent1 hover-accent1"><span class="btext"><?php echo $read_more_text // xss ok ?></span></a> <?php if ( ! empty( $view_all_text ) && ! empty( $view_all_link ) ): ?> <span class="view-all-wrapper"> <?php _e( 'or', 'church-event' ); ?> <a href="<?php echo $view_all_link // xss ok ?>" title="<?php esc_attr( $view_all_text ) ?>" class="view-all-link"><?php echo $view_all_text // xss ok ?></a> </span> <?php endif ?> </div> </div> </div> <?php endforeach; ?>