HEX
Server: Apache
System: Linux eisbus 6.8.12-9-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-9 (2025-03-16T19:18Z) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/ThemeBackup/eisschnecken/page-projects.php
<?php

get_header();


if (have_posts()) :
	while (have_posts()) : the_post();	?>
	
	<article class="post page">
		
		<!-- column-container -->
		<div class="column-container clearfix">
		
			<!-- title-column -->
			<div class="title-column">
				<h2><?php the_title(); ?></h2>
			</div><!-- /title-column -->
			
			<!-- text-column -->
			<div class="text-column">
				<?php the_content(); ?>
			</div><!-- /text-column -->
			
		</div><!-- /column-container -->
		
		
	</article>
	
	<?php
		endwhile;
	
	else :
		echo '<p>No content found</p>';
	
	endif;
	
get_footer();

?>