Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/views/tickets/my-tickets/title.php
<?php
/**
 * My Tickets: Title
 *
 * Override this template in your own theme by creating a file at [your-theme]/tribe/tickets/tickets/my-tickets/title.php
 *
 * @since 5.6.7
 * @since 5.8.0 Added the ticket type parameter.
 * @since 5.9.1 Corrected template override filepath
 *
 * @version 5.8.0
 *
 * @var string  $title       The title.
 * @var string  $ticket_type The ticket type.
 */

?>
<div class="tec-tickets__my-tickets-list-title-container type-<?php echo esc_attr( $ticket_type ); ?>">
	<div class="tec-tickets__my-tickets-list-title">
		<?php echo esc_html( $title ); ?>
	</div>
</div>