|
@@ -5,17 +5,29 @@
|
|
|
<div id="main" class="col620 clear" role="main">
|
|
<div id="main" class="col620 clear" role="main">
|
|
|
|
|
|
|
|
<?php if (is_category()) { ?>
|
|
<?php if (is_category()) { ?>
|
|
|
- <h1 class="archive_title h2"><span>Posts Categorized:</span> <?php single_cat_title(); ?></h1>
|
|
|
|
|
|
|
+ <h1 class="archive_title h2">
|
|
|
|
|
+ <span><?php _e("Posts Categorized:", "bonestheme"); ?></span> <?php single_cat_title(); ?>
|
|
|
|
|
+ </h1>
|
|
|
<?php } elseif (is_tag()) { ?>
|
|
<?php } elseif (is_tag()) { ?>
|
|
|
- <h1 class="archive_title h2"><span>Posts Tagged:</span> <?php single_tag_title(); ?></h1>
|
|
|
|
|
|
|
+ <h1 class="archive_title h2">
|
|
|
|
|
+ <span><?php _e("Posts Tagged:", "bonestheme"); ?></span> <?php single_tag_title(); ?>
|
|
|
|
|
+ </h1>
|
|
|
<?php } elseif (is_author()) { ?>
|
|
<?php } elseif (is_author()) { ?>
|
|
|
- <h1 class="archive_title h2"><span>Posts By:</span> <?php get_the_author_meta('display_name'); ?></h1>
|
|
|
|
|
|
|
+ <h1 class="archive_title h2">
|
|
|
|
|
+ <span><?php _e("Posts By:", "bonestheme"); ?></span> <?php get_the_author_meta('display_name'); ?>
|
|
|
|
|
+ </h1>
|
|
|
<?php } elseif (is_day()) { ?>
|
|
<?php } elseif (is_day()) { ?>
|
|
|
- <h1 class="archive_title h2"><span>Daily Archives:</span> <?php the_time('l, F j, Y'); ?></h1>
|
|
|
|
|
|
|
+ <h1 class="archive_title h2">
|
|
|
|
|
+ <span><?php _e("Daily Archives:", "bonestheme"); ?></span> <?php the_time('l, F j, Y'); ?>
|
|
|
|
|
+ </h1>
|
|
|
<?php } elseif (is_month()) { ?>
|
|
<?php } elseif (is_month()) { ?>
|
|
|
- <h1 class="archive_title h2"><span>Monthly Archives:</span> <?php the_time('F Y'); ?></h1>
|
|
|
|
|
|
|
+ <h1 class="archive_title h2">
|
|
|
|
|
+ <span><?php _e("Monthly Archives:", "bonestheme"); ?>:</span> <?php the_time('F Y'); ?>
|
|
|
|
|
+ </h1>
|
|
|
<?php } elseif (is_year()) { ?>
|
|
<?php } elseif (is_year()) { ?>
|
|
|
- <h1 class="archive_title h2"><span>Yearly Archives:</span> <?php the_time('Y'); ?></h1>
|
|
|
|
|
|
|
+ <h1 class="archive_title h2">
|
|
|
|
|
+ <span><?php _e("Yearly Archives:", "bonestheme"); ?>:</span> <?php the_time('Y'); ?>
|
|
|
|
|
+ </h1>
|
|
|
<?php } ?>
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
@@ -26,7 +38,7 @@
|
|
|
|
|
|
|
|
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
|
|
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
|
|
|
|
|
|
|
|
- <p class="meta">Posted <time><?php the_time('F jS, Y'); ?></time> by <?php the_author_posts_link(); ?> <span class="amp">&</span> filed under <?php the_category(', '); ?>.</p>
|
|
|
|
|
|
|
+ <p class="meta"><?php _e("Posted", "bonestheme"); ?> <time><?php the_time('F jS, Y'); ?></time> <?php _e("by", "bonestheme"); ?> <?php the_author_posts_link(); ?> <span class="amp">&</span> <?php _e("filed under", "bonestheme"); ?> <?php the_category(', '); ?>.</p>
|
|
|
|
|
|
|
|
</header> <!-- end article header -->
|
|
</header> <!-- end article header -->
|
|
|
|
|
|
|
@@ -34,7 +46,7 @@
|
|
|
|
|
|
|
|
<?php the_post_thumbnail( 'bones-thumb-300' ); ?>
|
|
<?php the_post_thumbnail( 'bones-thumb-300' ); ?>
|
|
|
|
|
|
|
|
- <?php the_excerpt('<span class="read-more">Read more on "'.the_title('', '', false).'" »</span>'); ?>
|
|
|
|
|
|
|
+ <?php the_excerpt(_e('<span class="read-more">Read more on "'.the_title('', '', false).'" »</span>', "bonestheme")); ?>
|
|
|
|
|
|
|
|
</section> <!-- end article section -->
|
|
</section> <!-- end article section -->
|
|
|
|
|
|
|
@@ -53,8 +65,8 @@
|
|
|
<?php } else { // if it is disabled, display regular wp prev & next links ?>
|
|
<?php } else { // if it is disabled, display regular wp prev & next links ?>
|
|
|
<nav class="wp-prev-next">
|
|
<nav class="wp-prev-next">
|
|
|
<ul class="clear">
|
|
<ul class="clear">
|
|
|
- <li class="prev-link"><?php next_posts_link('« Older Entries') ?></li>
|
|
|
|
|
- <li class="next-link"><?php previous_posts_link('Newer Entries »') ?></li>
|
|
|
|
|
|
|
+ <li class="prev-link"><?php next_posts_link(_e('« Older Entries', "bonestheme")) ?></li>
|
|
|
|
|
+ <li class="next-link"><?php previous_posts_link(_e('Newer Entries »', "bonestheme")) ?></li>
|
|
|
</ul>
|
|
</ul>
|
|
|
</nav>
|
|
</nav>
|
|
|
<?php } ?>
|
|
<?php } ?>
|
|
@@ -64,10 +76,10 @@
|
|
|
|
|
|
|
|
<article id="post-not-found">
|
|
<article id="post-not-found">
|
|
|
<header>
|
|
<header>
|
|
|
- <h1>No Posts Yet</h1>
|
|
|
|
|
|
|
+ <h1><?php _e("No Posts Yet", "bonestheme"); ?></h1>
|
|
|
</header>
|
|
</header>
|
|
|
<section class="post_content">
|
|
<section class="post_content">
|
|
|
- <p>Sorry, but the requested resource was not found on this site.</p>
|
|
|
|
|
|
|
+ <p><?php _e("Sorry, What you were looking for is not here.", "bonestheme"); ?></p>
|
|
|
</section>
|
|
</section>
|
|
|
<footer>
|
|
<footer>
|
|
|
</footer>
|
|
</footer>
|