1
|
1 |
<?php get_header(); ?> |
|
2 |
|
|
3 |
<?php get_sidebar(); ?> |
|
4 |
|
|
5 |
<div id="main"> |
|
6 |
|
|
7 |
<div id="left"> |
|
8 |
|
|
9 |
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> |
|
10 |
|
|
11 |
<div class="post"> |
|
12 |
|
|
13 |
<div class="middle"> |
|
14 |
|
|
15 |
<div class="box"> |
|
16 |
|
|
17 |
<h3>Share This</h3> |
|
18 |
|
|
19 |
<ul class="links half"> |
|
20 |
|
|
21 |
<li><a href="http://www.stumbleupon.com/submit?url=<?php the_permalink(); ?>&title=<?php the_title_attribute(); ?>">StumbleUpon</a></li> |
|
22 |
|
|
23 |
<li><a href="http://www.facebook.com/sharer.php?u=<?php the_permalink();?>&t=<?php the_title_attribute(); ?>">Facebook</a></li> |
|
24 |
|
|
25 |
<li><a href="http://twitter.com/home?status=<?php the_permalink(); ?>">Twitter</a></li> |
|
26 |
|
|
27 |
<li><a href="http://delicious.com/post?url=<?php the_permalink(); ?>&title=<?php the_title_attribute(); ?>">Delicious</a></li> |
|
28 |
|
|
29 |
</ul> |
|
30 |
|
|
31 |
</div> |
|
32 |
|
|
33 |
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Single Middle") ) : ?> |
|
34 |
|
|
35 |
<img class="banner" src="<?php bloginfo('template_url'); ?>/images/banner.jpg" alt="125x125 Banner" /> |
|
36 |
|
|
37 |
<div class="box"> |
|
38 |
|
|
39 |
<p>Vivamus volutpat consectetuer nisl. Vivamus et est. Pellentesque eget purus et dui fringilla tempor. Nullam ac odio quis leo bibendum blandit. Aenean fermentum sodales augue. Cras egestas libero. Phasellus vel nisi eget sem pellentesque volutpat. </p> |
|
40 |
|
|
41 |
</div> |
|
42 |
|
|
43 |
<?php endif; ?> |
|
44 |
|
|
45 |
</div> |
|
46 |
|
|
47 |
|
|
48 |
|
|
49 |
<h1><?php the_title(); ?></h1> |
|
50 |
|
|
51 |
<div class="author">Posted by <?php the_author(); ?> on <?php the_time('F jS, Y'); ?></div> |