equal
deleted
inserted
replaced
|
1 <?php get_header(); ?> |
|
2 <div id="sub"> |
|
3 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> |
|
4 <div class="navigation"> |
|
5 <div class="alignleft"><?php previous_post_link('%link') ?></div> |
|
6 <div class="alignright"><?php next_post_link('%link') ?></div> |
|
7 <div class="end"></div> |
|
8 </div> |
|
9 <div class="wpis_sub"><!-- pojedynczy wpis na stronie głównej --> |
|
10 <div class="tresc"> |
|
11 <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2> |
|
12 <div class="dane"> |
|
13 <p>Kategoria: <?php the_category(', ') ?></p> |
|
14 </div> |
|
15 |
|
16 <div class="entry"> |
|
17 <?php the_content("więcej", the_title('', '', false)); ?> |
|
18 <div class="img"><?php custom_field_image("obrazek2");?></div> |
|
19 </div> |
|
20 </div> |
|
21 <div class="end"></div> |
|
22 </div><!-- koniec wpisu --> |
|
23 <?php comments_template(); ?> |
|
24 <?php endwhile; else: ?> |
|
25 <p>Sorry, no posts matched your criteria.</p> |
|
26 <?php endif; ?> |
|
27 </div> |
|
28 <?php get_sidebar(); ?> |
|
29 <?php get_footer(); ?> |