-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
102 lines (81 loc) · 4.29 KB
/
index.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php get_header(); ?>
<div id="container">
<div id="content">
<?php /* Top post navigation */ ?>
<?php global $wp_query; $total_pages = $wp_query->max_num_pages; ?>
<?php if ($total_pages > 1): ?>
<div id="nav-above" class="navigation">
<div class="nav-previous"><?php next_posts_link(__('<span class="meta-nav">«</span> Older posts', 'lessonpie')); ?></div>
<div class="nav-next"><?php previous_posts_link(__('Newer posts <span class="meta-nav">»</span>', 'lessonpie')); ?></div>
</div><!-- #nav-above -->
<?php endif; ?>
<?php while (have_posts()): the_post() ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php printf(__('Permalink to %s', 'lessonpie'), the_title_attribute('echo=0')); ?>" rel="bookmark"><?php the_title(); ?></a>
</h2>
<?php /* Microformatted, translatable post meta */ ?>
<div class="entry-meta">
<span class="meta-prep meta-prep-author"><?php _e('By ', 'lessonpie'); ?></span>
<span class="author vcard"><a class="url fn n" href="<?php echo get_author_link(false, $authordata->ID, $authordata->user_nicename); ?>" title="<?php printf(__('View all posts by %s', 'lessonpie'), $authordata->display_name); ?>"><?php the_author(); ?></a></span>
<span class="meta-sep"> | </span>
<span class="meta-prep meta-prep-entry-date"><?php _e('Published ', 'lessonpie'); ?></span>
<span class="entry-date"><abbr class="published" title="<?php the_time('Y-m-d\TH:i:sO'); ?>"><?php the_time(get_option('date_format')); ?></abbr></span>
<?php edit_post_link(__('Edit', 'lessonpie' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t" ); ?>
</div><!-- .entry-meta -->
<?php /* The entry content */ ?>
<div class="entry-content">
<?php the_content(__('Continue reading <span class="meta-nav">»</span>', 'lessonpie')); ?>
<?php wp_link_pages('before=<div class="page-link">'.__('Pages:', 'lessonpie').'&after=</div>'); ?>
</div><!-- .entry-content -->
<?php /* Microformatted category and tag links along with a comments link */ ?>
<div class="entry-utility">
<span class="cat-links">
<span class="entry-utility-prep entry-utility-prep-cat-links">
<?php _e('Posted in ', 'lessonpie'); ?>
</span>
<?php echo get_the_category_list(', '); ?>
</span>
<span class="meta-sep"> | </span>
<?php the_tags('<span class="tag-links"><span class="entry-utility-prep entry-utility-prep-tag-links">'.__('Tagged ', 'lessonpie').'</span>', ", ", "</span>\n\t\t\t\t\t\t<span class=\"meta-sep\">|</span>\n"); ?>
<span class="comments-link">
<?php comments_popup_link(
__('Leave a comment', 'lessonpie'),
__('1 Comment', 'lessonpie'),
__('% Comments', 'lessonpie')
); ?>
</span>
<?php edit_post_link(
__('Edit', 'lessonpie'),
"<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">",
"</span>\n\t\t\t\t\t\n"
); ?>
</div><!-- #entry-utility -->
</div><!-- #post-<?php the_ID(); ?> -->
<?php //the_content(); ?>
<?php endwhile; ?>
<?php /* Bottom post navigation */ ?>
<?php global $wp_query; $total_pages = $wp_query->max_num_pages; ?>
<?php if ($total_pages > 1): ?>
<div id="nav-below" class="navigation">
<div class="nav-previous"><?php next_posts_link(__('<span class="meta-nav">«</span> Older posts', 'lessonpie')); ?></div>
<div class="nav-next"><?php previous_posts_link(__('Newer posts <span class="meta-nav">»</span>', 'lessonpie')); ?></div>
</div><!-- #nav-below -->
<?php endif; ?>
</div><!-- #content -->
<?/*
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php printf(__('Permalink to %s', 'lessonpie'), the_title_attribute('echo=0')); ?>" rel="bookmark"><?php the_title(); ?></a>
</h2>
<div class="entry-content">
<?php the_content(__('Continue reading <span class="meta-nav">»</span>', 'lessonpie')); ?>
<?php wp_link_pages('before=<div class="page-link">'.__('Pages:', 'lessonpie').'&after=</div>'); ?>
</div><!-- .entry-content -->
*/?>
</div><!-- #container -->
<div id="primary" class="widget-area">
</div><!-- #primary .widget-area -->
<div id="secondary" class="widget-area">
</div><!-- #secondary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>