-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
37 lines (27 loc) · 1 KB
/
page.php
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
35
36
37
<?php get_header(); ?>
<div class="page">
<div class="content">
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID();?>">
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="post_content">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; ?>
<!-- permet de modifier directement cette page -->
<?php edit_post_link('Modifier cette page', '<p>', '</p>'); ?>
<?php else : ?>
<!-- erreur pas de page trouv�e � cette url -->
<h2>Oooopppsss...</h2>
<p>Désolé, mais vous cherchez quelque chose qui ne se trouve pas ici .</p>
<!--include (TEMPLATEPATH . "/searchform.php");-->
<?php endif; ?>
</div><!-- fermeture <div class="content"-->
<!--</div>--><!--fermeture <div id="all-middle>-->
<?php get_sidebar(); ?>
</div>--> <!--fermeture <div class="page"-->
<?php get_footer(); ?>
</body>
</html>