custom-modern-theme/archive-projekte.php

19 lines
380 B
PHP
Raw Permalink Normal View History

2024-07-31 20:14:58 +02:00
<?php get_header(); ?>
<h1 style="margin-top: 25px;">Projekte</h1>
<?php if ( have_posts() ) : ?>
<ul>
<?php while ( have_posts() ) :the_post(); ?>
<li>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
</li>
<?php endwhile; ?>
</ul>
<?php else : ?>
<p>Keine Projekte gefunden.</p>
<?php endif; ?>
<?php get_footer(); ?>