9 lines
301 B
PHP
Executable File
9 lines
301 B
PHP
Executable File
<?php get_header(); ?>
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
<h1><?php the_title(); ?></h1>
|
|
<p><?php the_content(__('(Mehr...)')); ?></p>
|
|
<?php endwhile; else: ?>
|
|
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
|
|
<?php endif; ?>
|
|
<?php get_footer(); ?>
|