diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..496ee2c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store \ No newline at end of file diff --git a/404.php b/404.php new file mode 100644 index 0000000..ad56e8f --- /dev/null +++ b/404.php @@ -0,0 +1,14 @@ + +
+
+
+

+
+
+

+ +
+
+
+ + \ No newline at end of file diff --git a/archive.php b/archive.php new file mode 100644 index 0000000..b78455f --- /dev/null +++ b/archive.php @@ -0,0 +1,17 @@ + +
+
+

+
+ + + + +
+ + \ No newline at end of file diff --git a/attachment.php b/attachment.php new file mode 100644 index 0000000..dc19623 --- /dev/null +++ b/attachment.php @@ -0,0 +1,32 @@ + + +
+ +
+

| post_parent); ?>

+ +
+
> +
+ +
+
+
+ID ) ) : $att_image = wp_get_attachment_image_src( $post->ID, "large"); ?> +

<?php $post->post_excerpt; ?>

+ +guid); ?> + +
+
post_excerpt) ) the_excerpt(); ?>
+ +
+
+ + +
+ + \ No newline at end of file diff --git a/author.php b/author.php new file mode 100644 index 0000000..de9f151 --- /dev/null +++ b/author.php @@ -0,0 +1,15 @@ + +
+
+ +

:

+' . get_the_author_meta('user_description') . ''); ?> + +
+ + + + +
+ + \ No newline at end of file diff --git a/category.php b/category.php new file mode 100644 index 0000000..ae43262 --- /dev/null +++ b/category.php @@ -0,0 +1,13 @@ + +
+
+

+' . category_description() . ''); ?> +
+ + + + +
+ + \ No newline at end of file diff --git a/comments.php b/comments.php new file mode 100644 index 0000000..253c68b --- /dev/null +++ b/comments.php @@ -0,0 +1,41 @@ + +
+ +
+

+ 1 ) : ?> + + + + 1 ) : ?> + + +
+ +
+

'.$ping_count.' '.($ping_count > 1 ? __( 'Trackbacks', 'blankslate' ) : __( 'Trackback', 'blankslate' ) ); ?>

+ +
+ +
\ No newline at end of file diff --git a/entry-content.php b/entry-content.php new file mode 100644 index 0000000..a88531c --- /dev/null +++ b/entry-content.php @@ -0,0 +1,5 @@ +
+ + +
+
\ No newline at end of file diff --git a/entry-footer.php b/entry-footer.php new file mode 100644 index 0000000..ac9a54a --- /dev/null +++ b/entry-footer.php @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/entry-meta.php b/entry-meta.php new file mode 100644 index 0000000..606b1b3 --- /dev/null +++ b/entry-meta.php @@ -0,0 +1,5 @@ +
+ + | + +
\ No newline at end of file diff --git a/entry-summary.php b/entry-summary.php new file mode 100644 index 0000000..23b006a --- /dev/null +++ b/entry-summary.php @@ -0,0 +1,4 @@ +
+ +
+
\ No newline at end of file diff --git a/entry.php b/entry.php new file mode 100644 index 0000000..a6d5d53 --- /dev/null +++ b/entry.php @@ -0,0 +1,8 @@ +
> +
+';} else {echo '

';} ?>';} else {echo '

';} ?> + +
+ + +
\ No newline at end of file diff --git a/footer.php b/footer.php new file mode 100644 index 0000000..b443573 --- /dev/null +++ b/footer.php @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/functions.php b/functions.php new file mode 100644 index 0000000..c159d5c --- /dev/null +++ b/functions.php @@ -0,0 +1,66 @@ + __( 'Main Menu', 'blankslate' ) ) +); +} +add_action('wp_enqueue_scripts', 'blankslate_load_scripts'); +function blankslate_load_scripts() +{ +wp_enqueue_script('jquery'); +} +add_action('comment_form_before', 'blankslate_enqueue_comment_reply_script'); +function blankslate_enqueue_comment_reply_script() +{ +if (get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } +} +add_filter('the_title', 'blankslate_title'); +function blankslate_title($title) { +if ($title == '') { +return '→'; +} else { +return $title; +} +} +add_filter('wp_title', 'blankslate_filter_wp_title'); +function blankslate_filter_wp_title($title) +{ +return $title . esc_attr(get_bloginfo('name')); +} +add_action('widgets_init', 'blankslate_widgets_init'); +function blankslate_widgets_init() +{ +register_sidebar( array ( +'name' => __('Sidebar Widget Area', 'blankslate'), +'id' => 'primary-widget-area', +'before_widget' => '
  • ', +'after_widget' => "
  • ", +'before_title' => '

    ', +'after_title' => '

    ', +) ); +} +function blankslate_custom_pings($comment) +{ +$GLOBALS['comment'] = $comment; +?> +
  • id="li-comment-">
  • + +> + + + +<?php wp_title(' | ', true, 'right'); ?> + + + +> +
    + +
    \ No newline at end of file diff --git a/index.php b/index.php new file mode 100644 index 0000000..07093f7 --- /dev/null +++ b/index.php @@ -0,0 +1,10 @@ + +
    + + + + + +
    + + \ No newline at end of file diff --git a/nav-below-single.php b/nav-below-single.php new file mode 100644 index 0000000..aa312b6 --- /dev/null +++ b/nav-below-single.php @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/nav-below.php b/nav-below.php new file mode 100644 index 0000000..5c7daaa --- /dev/null +++ b/nav-below.php @@ -0,0 +1,6 @@ +max_num_pages > 1 ) { ?> + + \ No newline at end of file diff --git a/page.php b/page.php new file mode 100644 index 0000000..ff48f34 --- /dev/null +++ b/page.php @@ -0,0 +1,18 @@ + +
    + +
    > +
    +

    +
    +
    + + +
    +
    +
    + + +
    + + \ No newline at end of file diff --git a/readme.txt b/readme.txt new file mode 100644 index 0000000..e9a29b5 --- /dev/null +++ b/readme.txt @@ -0,0 +1,40 @@ +IMPORTANT - PLEASE READ: tidythemes.com/concept + +YOU MAY DELETE THIS FILE AND ANY OTHER FILE(S) BEFORE STARTING YOUR PROJECT + +If you're creating your own theme/client project open up all files and do a +"Find and Replace All in All Files" on the word "blankslate" with your own slug/prefix. + +- - THEME - - + +BlankSlate WordPress Theme | Demo: wp-themes.com/blankslate + +- - DESCRIPTION - - + +This theme is aimed at web pros, but is of course available and supported for anyone. + +The bare essentials of a WordPress theme, no visual CSS styles added except for the CSS +reset and the mandatory WP classes. Perfect for those who would like to build their own +theme completely from scratch. + +One custom menu and one widgetized sidebar to get you started. + +If you'd like a jumpstart with a CSS framework and more custom menus, page templates +and widgetized areas, checkout SuperSimple: tidythemes.com/supersimple + +- - COPYRIGHT & LICENSE - - + +In its unchanged/original state BlankSlate is... + +© 2011-2013 TidyThemes +GNU General Public License | https://www.gnu.org/licenses/gpl.html + +...however, once you've significantly changed the theme to build your own unique project, +either for yourself or for a client under a different name (as is encouraged) you're +entirely welcome to copyright and license that project as you see fit. + +- - SUPPORT - - + +tidythemes.com/forum + +Enjoy. Thanks, TidyThemes | tidythemes.com \ No newline at end of file diff --git a/screenshot.png b/screenshot.png new file mode 100644 index 0000000..bb73bc4 Binary files /dev/null and b/screenshot.png differ diff --git a/search.php b/search.php new file mode 100644 index 0000000..8888eb6 --- /dev/null +++ b/search.php @@ -0,0 +1,24 @@ + +
    + +
    +

    +
    + + + + + +
    +
    +

    +
    +
    +

    + +
    +
    + +
    + + \ No newline at end of file diff --git a/sidebar.php b/sidebar.php new file mode 100644 index 0000000..d3ed01b --- /dev/null +++ b/sidebar.php @@ -0,0 +1,9 @@ + \ No newline at end of file diff --git a/single.php b/single.php new file mode 100644 index 0000000..3eed4e7 --- /dev/null +++ b/single.php @@ -0,0 +1,12 @@ + +
    + + + + +
    + +
    +
    + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..e1120f7 --- /dev/null +++ b/style.css @@ -0,0 +1,17 @@ +/* +Theme Name: BlankSlate +Theme URI: http://wordpress.org/themes/blankslate +Author: TidyThemes +Author URI: http://tidythemes.com/ +Description: UPDATE - 4.0+ is here, completely overhauled, yet again. As always, use caution when upgrading and learn the TidyThemes concept.   → CAUTION: If you're child theming or have clients that are child theming on top of BlankSlate (not the recommended use), please do not blindly upgrade to newer versions.   → DESCRIPTION: BlankSlate is the definitive WordPress HTML5 boilerplate starter theme. We've carefully constructed the most clean and minimalist theme available anywhere for designers/developers to use as a base/foundation to build websites for clients or to build completely custom themes from scratch to release faster. Clean, semi-minified, unformatted and valid code, SEO-friendly, no programmer comments, standardized and as white label as possible and most importantly, CSS reset for cross-browser-compatability and no intrusive visual CSS styles added whatsoever. A perfect skeleton theme that blows any others like it (the subsequent underscores.me for example) completely out of the water, as they're simply too overcomplicated for what people really want in this kind of theme. Now comes with jQuery enqueued and ready to go.   → SUPPORT: Please use the official support forum. Comments and suggestions for improving BlankSlate, please see "TidyThemes Sucks!". Just getting started? Want to learn CSS?   → WHAT'S NEW?: We stripped down as much custom, extraneous, superfluous junk code as we could and greatly improved the HTML5 structure. Chip Bennett, a highly experienced programmer and official WordPress administrator, worked closely with us to audit the theme code for quality. See just how much we've revamped things. Last, but not least, BlankSlate has now been opened up on GitHub if anyone would like to make suggested code additions/improvements. Thank you for using BlankSlate. +Version: 4.0 +License: GNU General Public License +License URI: https://www.gnu.org/licenses/gpl.html +Tags: black, blue, white, light, one-column, flexible-width, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready +Text Domain: blankslate + +BlankSlate WordPress Theme © 2011-2013 TidyThemes +BlankSlate is distributed under the terms of the GNU GPL +*/ + +html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{font-size:100%;font:inherit;padding:0;border:0;margin:0;vertical-align:baseline}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}.clear{clear:both}.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{} \ No newline at end of file diff --git a/tag.php b/tag.php new file mode 100644 index 0000000..e2ecec4 --- /dev/null +++ b/tag.php @@ -0,0 +1,12 @@ + +
    +
    +

    +
    + + + + +
    + + \ No newline at end of file