HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //proc/thread-self/root/var/www/html/wpprotonperinggit/wp-content/themes/voiture/page-dashboard.php
<?php
/**
 * The template for displaying pages
 *
 * This is the template that displays all pages by default.
 * Please note that this is the WordPress construct of pages and that
 * other "pages" on your WordPress site will use a different template.
 *
 * @package WordPress
 * @subpackage Voiture
 * @since Voiture 1.0
 */
/*
*Template Name: Dashboard Template
*/
get_header();
$sidebar_configs = voiture_get_page_layout_configs();
global $post;
?>
<section class="page-dashboard <?php echo esc_attr(get_post_meta( $post->ID, 'apus_page_layout', true )); ?>">
	<?php if(get_post_meta( $post->ID, 'apus_page_show_breadcrumb', true )){ ?>
		<div class="apus-breadscrumb-dashboard">
			<?php voiture_render_breadcrumbs(); ?>
		</div>
	<?php } ?>
	<section id="main-container" class="inner-dashboard <?php echo apply_filters('voiture_page_content_class', 'container');?> <?php echo esc_attr(get_post_meta( $post->ID, 'apus_page_layout', true )); ?> ">
		<?php voiture_before_content( $sidebar_configs ); ?>
		<div class="row">
			<?php voiture_display_sidebar_left( $sidebar_configs ); ?>
			<div id="main-content" class="main-page col-xs-12">
				<div id="main" class="site-main clearfix" role="main">

					<?php
					// Start the loop.
					while ( have_posts() ) : the_post();
						
						// Include the page content template.
						the_content();

						// If comments are open or we have at least one comment, load up the comment template.
						if ( comments_open() || get_comments_number() ) :
							comments_template();
						endif;

					// End the loop.
					endwhile;
					?>
				</div><!-- .site-main -->
				<?php
	    		wp_link_pages( array(
	    			'before'      => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'voiture' ) . '</span>',
	    			'after'       => '</div>',
	    			'link_before' => '<span>',
	    			'link_after'  => '</span>',
	    			'pagelink'    => '<span class="screen-reader-text">' . esc_html__( 'Page', 'voiture' ) . ' </span>%',
	    			'separator'   => '',
	    		) );
	    		?>
			</div><!-- .content-area -->
			<?php voiture_display_sidebar_right( $sidebar_configs ); ?>
		</div>
	</section>
</section>
<?php get_footer(); ?>