init
This commit is contained in:
commit
296a2258c1
35 changed files with 12274 additions and 0 deletions
18
archive-projekte.php
Normal file
18
archive-projekte.php
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?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(); ?>
|
Loading…
Add table
Add a link
Reference in a new issue