removing Blueprint CSS specific classes
This commit is contained in:
6
404.php
6
404.php
@@ -5,12 +5,10 @@
|
|||||||
<div id="main" role="main">
|
<div id="main" role="main">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1><?php _e('File Not Found', 'roots'); ?></h1>
|
<h1><?php _e('File Not Found', 'roots'); ?></h1>
|
||||||
<div class="error">
|
<p><?php _e('The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.', 'roots'); ?></p>
|
||||||
<p class="bottom"><?php _e('The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.', 'roots'); ?></p>
|
|
||||||
</div>
|
|
||||||
<p><?php _e('Please try the following:', 'roots'); ?></p>
|
<p><?php _e('Please try the following:', 'roots'); ?></p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><?php _e('Check your spelling', 'roots'); ?> </li>
|
<li><?php _e('Check your spelling', 'roots'); ?></li>
|
||||||
<li><?php printf(__('Return to the <a href="%s">home page</a>', 'roots'), home_url()); ?></li>
|
<li><?php printf(__('Return to the <a href="%s">home page</a>', 'roots'), home_url()); ?></li>
|
||||||
<li><?php _e('Click the <a href="javascript:history.back()">Back</a> button', 'roots'); ?></li>
|
<li><?php _e('Click the <a href="javascript:history.back()">Back</a> button', 'roots'); ?></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
13
comments.php
13
comments.php
@@ -10,10 +10,7 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
<?php if ($comment->comment_approved == '0') : ?>
|
<?php if ($comment->comment_approved == '0') : ?>
|
||||||
<div class="notice">
|
<p><?php _e('Your comment is awaiting moderation.', 'roots') ?></p>
|
||||||
<p class="bottom"><?php _e('Your comment is awaiting moderation.', 'roots') ?></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<section class="comment">
|
<section class="comment">
|
||||||
@@ -32,9 +29,7 @@
|
|||||||
|
|
||||||
if ( post_password_required() ) { ?>
|
if ( post_password_required() ) { ?>
|
||||||
<section id="comments">
|
<section id="comments">
|
||||||
<div class="notice">
|
<p><?php _e('This post is password protected. Enter the password to view comments.', 'roots'); ?></p>
|
||||||
<p class="bottom"><?php _e('This post is password protected. Enter the password to view comments.', 'roots'); ?></p>
|
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
<?php
|
<?php
|
||||||
return;
|
return;
|
||||||
@@ -59,9 +54,7 @@
|
|||||||
<?php if ( comments_open() ) : ?>
|
<?php if ( comments_open() ) : ?>
|
||||||
<?php else : // comments are closed ?>
|
<?php else : // comments are closed ?>
|
||||||
<section id="comments">
|
<section id="comments">
|
||||||
<div class="notice">
|
<p><?php _e('Comments are closed.', 'roots') ?></p>
|
||||||
<p class="bottom"><?php _e('Comments are closed.', 'roots') ?></p>
|
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
<?php /* If there are no posts to display, such as an empty archive page */ ?>
|
<?php /* If there are no posts to display, such as an empty archive page */ ?>
|
||||||
<?php if (!have_posts()) : ?>
|
<?php if (!have_posts()) : ?>
|
||||||
<div class="notice">
|
<p><?php _e('Sorry, no results were found.', 'roots'); ?></p>
|
||||||
<p class="bottom"><?php _e('Sorry, no results were found.', 'roots'); ?></p>
|
|
||||||
</div>
|
|
||||||
<?php get_search_form(); ?>
|
<?php get_search_form(); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
|||||||
4
loop.php
4
loop.php
@@ -1,8 +1,6 @@
|
|||||||
<?php /* If there are no posts to display, such as an empty archive page */ ?>
|
<?php /* If there are no posts to display, such as an empty archive page */ ?>
|
||||||
<?php if (!have_posts()) : ?>
|
<?php if (!have_posts()) : ?>
|
||||||
<div class="notice">
|
<p><?php _e('Sorry, no results were found.', 'roots'); ?></p>
|
||||||
<p class="bottom"><?php _e('Sorry, no results were found.', 'roots'); ?></p>
|
|
||||||
</div>
|
|
||||||
<?php get_search_form(); ?>
|
<?php get_search_form(); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user