Line | |
---|
1 | <?php get_header(); ?>
|
---|
2 | <!--#content:start-->
|
---|
3 | <div id="content">
|
---|
4 | <?php
|
---|
5 | $delicious = get_option('crybook_delicious_uri');
|
---|
6 | if (have_posts()) :
|
---|
7 | while (have_posts()) : the_post();
|
---|
8 | ?>
|
---|
9 | <div class="entry" id="post-<?php the_ID(); ?>">
|
---|
10 |
|
---|
11 |
|
---|
12 | <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link a <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
|
---|
13 | <p class="meta-header"><?php _e("Ricevuto il"); ?> <?php the_time('d F , Y') ?> in <?php the_category(',') ?> da <?php the_author_posts_link(); ?> <?php edit_post_link(__('<span class="edit">Modifica</a>')); ?></p>
|
---|
14 |
|
---|
15 | <?php the_content(__('')); ?>
|
---|
16 |
|
---|
17 | <div class="meta-footer">
|
---|
18 | <ul>
|
---|
19 | <li><a href="<?php the_permalink() ?>">Leggi Tutto</a></li>
|
---|
20 | <li><a href="<?php the_permalink() ?>#comment"><?php comments_number(); ?></a></li>
|
---|
21 | <?php edit_post_link(__('Edit'), '<li>', '</li>'); ?>
|
---|
22 | </ul>
|
---|
23 | <div class="clear-left"></div>
|
---|
24 | </div>
|
---|
25 |
|
---|
26 | </div>
|
---|
27 | <?php endwhile; ?>
|
---|
28 | <?php endif; ?>
|
---|
29 | <div class="pagination">
|
---|
30 | <div class="prev-page"><?php next_posts_link('Older Entries') ?></div>
|
---|
31 | <div class="next-page"><?php previous_posts_link('Newer Entries') ?></div>
|
---|
32 | </div>
|
---|
33 | </div>
|
---|
34 | <!--#content:end-->
|
---|
35 | <?php get_sidebar(); ?>
|
---|
36 | <?php get_footer(); ?>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.