forked from satanas/wp-turpial-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
executable file
·67 lines (67 loc) · 2.67 KB
/
single.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php get_header(); ?>
<div id="content">
<div id="page-head">
<h1>Blog</h1>
</div>
<div id="page">
<div id="adsense_container">
<div id="turpial_adsense">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9865703181407066";
/* Turpial Footer */
google_ad_slot = "1694063806";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
</div>
<div id="posts">
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<div class="post">
<div class="post-head">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<span class="metadata">
<?php _e('Posted '); the_time('m/d/Y'); _e(' by '); _e(' '); the_author_posts_link(); edit_post_link('Edit', ' | ', ''); ?></span>
</div>
<?php the_content(); ?>
<span class="comment-count"><img alt="coment-icon" src="<?php bloginfo('template_directory'); ?>/images/comment-icon.png" width="16" /><?php comments_popup_link('No comments', '1 comment', '% comments'); ?></span>
</div>
<?php endwhile; ?>
<div class="comments-template">
<?php comments_template(); ?>
</div>
<?php else : ?>
<div class="post">
<h2><?php _e('We couldn\'t find posts'); ?></h2>
</div>
<?php endif ?>
</div>
<div id="sidebar">
<?php get_sidebar(); ?>
<div id="turpial_adsense_sidebar">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9865703181407066";
/* Turpial Sidebar */
google_ad_slot = "0210254568";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
</div>
<div class="clearbox"></div>
<div id="turpial_ads"> Ads Here </div>
</div>
</div>
</div>
<div class="push"></div>
</div>
<?php get_footer(); ?>