diff options
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | sidebar-index.php | 7 | ||||
-rw-r--r-- | theme.mk | 3 |
3 files changed, 12 insertions, 3 deletions
@@ -3,8 +3,6 @@ # ignore everyting * # but these: -!license.txt -!twentyeleven-fix.scss !style.scss !functions.php !screenshot.png @@ -12,6 +10,9 @@ !header.php.patch !single.php.patch !content-single.php +!sidebar-index.php +!twentyeleven-fix.scss +!license.txt !.gitignore !theme.mk !Makefile diff --git a/sidebar-index.php b/sidebar-index.php new file mode 100644 index 0000000..75558a7 --- /dev/null +++ b/sidebar-index.php @@ -0,0 +1,7 @@ +<?php +if (!is_active_sidebar( 'index-page-widgetarea' )) + return; +?> +<div id="index-widget"> + <?php dynamic_sidebar( 'sidebar-4' ); ?> +</div> @@ -5,7 +5,8 @@ srcfiles = \ index.php.patch \ header.php.patch \ single.php.patch \ - content-single.php + content-single.php \ + sidebar-index.php targets = style.css header.php index.php single.php |