136
|
1 |
<!-- POST --> |
|
2 |
<div class="post" id="post-<?php the_ID(); ?>"> |
|
3 |
<h2><a href="<?php the_permalink() ?>" rel="bookmark" ><?php the_title(); ?></a></h2> |
|
4 |
<p class="small"> |
|
5 |
<?php the_time('j, F Y') ?> | |
|
6 |
<?php echo(__("Published")." : "); ?> |
|
7 |
<?php |
|
8 |
|
|
9 |
the_category(', '); |
|
10 |
|
|
11 |
if($post->comment_count > 0) { |
|
12 |
echo ' | '; |
|
13 |
comments_popup_link('', '1 Comment', '% Comments'); |
|
14 |
} |
|
15 |
|
|
16 |
edit_post_link('Edit', ' | ', ''); |
|
17 |
?> |
|
18 |
</p> |
|
19 |
<div class="entry"> |
|
20 |
<p><?php the_excerpt_rss(); ?></p> |
|
21 |
<a class="more" href="<?php the_permalink() ?>" title="<?php the_title(); ?>">Lire la suite de l'article</a> |
|
22 |
</div> |
|
23 |
</div> |