forked from TamaraShopsin/OpenCounterWP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
page.php
54 lines (31 loc) · 1.24 KB
/
page.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
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
get_header(); ?>
<div id="header3">
<a href="<?php echo get_settings('home'); ?>">
<canvas id="clockcanvas" width="50" height="50">
<img src="http://opencounter.org/wp-content/uploads/2012/04/clockbig2.png"/>
</canvas>
</a>
</div>
<div id="content" class="narrowcolumn" role="main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="entry">
<?php the_content('<p class="serif">' . __('Read the rest of this page »', 'kubrick') . '</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', 'kubrick') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link(__('Edit this entry.', 'kubrick'), '<p>', '</p>'); ?>
</div>
<div class="navigation">
<?php previous_link(); ?>
<?php next_link(); ?>
</div>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>