Skip to content

Commit bfb2ddf

Browse files
author
Bill Hunt
committed
Add padding and border for post footer. Fixes #49
1 parent 492563a commit bfb2ddf

File tree

4 files changed

+512
-493
lines changed

4 files changed

+512
-493
lines changed

functions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function html5blank_conditional_scripts()
109109
// Load HTML5 Blank styles
110110
function html5blank_styles()
111111
{
112-
wp_register_style('html5blank', get_template_directory_uri() . '/static/css/main.css', array(), '1.0.11', 'all');
112+
wp_register_style('html5blank', get_template_directory_uri() . '/static/css/main.css', array(), '1.0.12', 'all');
113113
wp_enqueue_style('html5blank');
114114
}
115115

single.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@
4242

4343
<?php the_content(); // Dynamic Content ?>
4444

45-
<?php the_tags( __( 'Tags: ', 'html5blank' ), ', ', '<br>'); // Separated by commas with a line break at the end ?>
45+
<footer>
46+
<div class="tags"><?php the_tags( __( 'Tags: ', 'html5blank' ), ', ', '<br>'); // Separated by commas with a line break at the end ?></div>
4647

47-
<p><?php _e( 'Categorized in: ', 'html5blank' ); the_category(', '); // Separated by commas ?></p>
48+
<div class="category"><?php _e( 'Categorized in: ', 'html5blank' ); the_category(', '); // Separated by commas ?></div>
4849

49-
<footer>
5050
Share This: <?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) { ADDTOANY_SHARE_SAVE_KIT(); } ?>
5151

5252
<?php

0 commit comments

Comments
 (0)