HEX
Server: Apache
System: Linux server7 6.1.0-43-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.162-1 (2026-02-08) x86_64
User: k8148-2 (1324)
PHP: 8.1.34
Disabled: show_source, highlight_file, apache_child_terminate, apache_get_modules, apache_note, apache_setenv, virtual, dl, posix_getpwnam, posix_getpwuid, posix_mkfifo, posix_mknod, posix_setpgid, posix_setsid, posix_setuid, posix_uname, proc_nice, openlog, syslog, pfsockopen, system, shell_exec, passthru, popen, proc_open, exec
Upload Files
File: /var/www/k8148-2/htdocs/www.sport-roth.at/old/wp-content/themes/daniel/page.php
<?php
/**
 * The template for displaying all 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 may use a
 * different template.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Daniel
 */

get_header();
?>

	<div id="primary" class="content-area danielpage-padding">
		<main id="main" class="site-main">

			<?php if( did_action( 'elementor/loaded' ) && !\Elementor\Plugin::$instance->db->is_built_with_elementor( get_the_ID() ) ): ?>
			<div class="ht-container">
				<div class="ht-row">
					<div class="ht-col-xs-12">
					<?php endif;?>

						<?php
							while ( have_posts() ) :
								the_post();
								
								if( \Elementor\Plugin::$instance->db->is_built_with_elementor( get_the_ID() ) ){
									the_content();
								}else{
									get_template_part( 'template-parts/content', 'page' );
								}

								// 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;

							endwhile; // End of the loop.
						?>

						<?php if( did_action( 'elementor/loaded' ) && !\Elementor\Plugin::$instance->db->is_built_with_elementor( get_the_ID() ) ): ?>
					</div>
				</div>
			</div>
		<?php endif;?>

		</main><!-- #main -->
	</div><!-- #primary -->

<?php
get_footer();