Line | |
---|
1 | <?php get_header(); ?>
|
---|
2 | <!-- BEGIN content -->
|
---|
3 | <div id="content">
|
---|
4 |
|
---|
5 | <?php if (have_posts()) : the_post(); ?>
|
---|
6 | <!-- begin latest -->
|
---|
7 | <div class="latest single">
|
---|
8 | <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
|
---|
9 | <?php the_content('Leggi Tutto'); ?>
|
---|
10 | <div class="break"></div>
|
---|
11 | <div class="details">
|
---|
12 | <p>Filed Under: <?php the_category(', ') ?></p>
|
---|
13 | <?php the_tags('<p>Tags: ', ', ', '</p>'); ?>
|
---|
14 | </div>
|
---|
15 | </div>
|
---|
16 | <!-- end latest -->
|
---|
17 | <?php else : ?>
|
---|
18 | <div class="notfound">
|
---|
19 | <h2>Not Found</h2>
|
---|
20 | <p>Sorry, but you are looking for something that is not here.</p>
|
---|
21 | </div>
|
---|
22 | <?php endif; ?>
|
---|
23 | <div id="comments"><?php comments_template(); ?></div>
|
---|
24 | </div>
|
---|
25 | <!-- END content -->
|
---|
26 | <?php get_sidebar(); get_footer(); ?>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.