forked from freifunkeu/wordpress-theme-ffeu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
34 lines (28 loc) · 912 Bytes
/
page.php
File metadata and controls
34 lines (28 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!-- Header -->
<?php get_header(); ?>
<!-- Header ende -->
<div id="wide">
<div class="wrapper">
<?php // if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
</div>
<div class="clear">
</div>
</div>
<div class="wrapper">
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
<?php
/*
* Kommentare sind auf Seiten deaktiviert.
* Möchtest du die Kommentarfunktion auf Seiten aktivieren, entferne einfach die beiden "//"-Zeichen vor "comments_template();"
*/
//comments_template();
?>
</div>
<?php get_sidebar(); ?>
<div class="clear">
</div>
<?php get_footer(); ?>