19 lines
380 B
PHP
19 lines
380 B
PHP
|
<?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(); ?>
|