Skip to content

Commit a6855ad

Browse files
Initial Commit
1 parent fc4d22e commit a6855ad

File tree

214 files changed

+47134
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+47134
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

404.php

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?php get_header(); ?>
2+
3+
<div id="content">
4+
5+
<div id="inner-content" class="wrap clearfix">
6+
7+
<div id="main" class="eightcol first clearfix" role="main">
8+
9+
<article id="post-not-found" class="hentry clearfix">
10+
11+
<header class="article-header">
12+
13+
<h1><?php _e("Epic 404 - Article Not Found", "bonestheme"); ?></h1>
14+
15+
</header> <!-- end article header -->
16+
17+
<section class="entry-content">
18+
19+
<p><?php _e("The article you were looking for was not found, but maybe try looking again!", "bonestheme"); ?></p>
20+
21+
</section> <!-- end article section -->
22+
23+
<section class="search">
24+
25+
<p><?php get_search_form(); ?></p>
26+
27+
</section> <!-- end search section -->
28+
29+
<footer class="article-footer">
30+
31+
<p><?php _e("This is the 404.php template.", "bonestheme"); ?></p>
32+
33+
</footer> <!-- end article footer -->
34+
35+
</article> <!-- end article -->
36+
37+
</div> <!-- end #main -->
38+
39+
</div> <!-- end #inner-content -->
40+
41+
</div> <!-- end #content -->
42+
43+
<?php get_footer(); ?>

README

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
/******************************************************************
2+
Bones
3+
A Lightweight Wordpress Development Theme
4+
5+
_______________________________________________________________
6+
HEADS UP!!!
7+
Bones & Bones (Responsive Edition) have been merged.
8+
_______________________________________________________________
9+
10+
Bones is designed to make the life of developers easier. It's built
11+
using HTML5 & has a strong semantic foundation. It was updated recently
12+
using some of the HTML5 Boilerplate's recommended markup and setup.
13+
It's constantly growing so be sure to check back often if you are a
14+
frequent user. I'm always open to contribution. :)
15+
16+
Designed by Eddie Machado
17+
http://themble.com/bones
18+
19+
License: WTFPL
20+
License URI: http://sam.zoy.org/wtfpl/
21+
Are You Serious? Yes.
22+
23+
Special Thanks to:
24+
Paul Irish & the HTML5 Boilerplate
25+
Yoast for some WP functions & optimization ideas
26+
Andrew Rogers for code optimization
27+
David Dellanave for speed & code optimization
28+
and several other developers. :)
29+
30+
Submit Bugs & or Fixes:
31+
https://github.com/eddiemachado/bones/issues
32+
33+
To view Release & Update Notes, read the log.txt file inside
34+
the library folder.
35+
36+
******************************************************************/
37+
38+
/* v1.25 update */
39+
- updated custom post type page for translation
40+
- added => to responsive jquery
41+
- cleaned up theme tags (which make NO sense, but are best practice, go figure)
42+
- updated html element to match hb5
43+
- fixed echo problem on admin.php
44+
- updated normalize (LESS also had some missing styles so I added them)
45+
- GetComputedStyle fix for IE (for responsive js)
46+
- cleaned up mixins (border radius)
47+
- added translations! (Chinese, Spanish)
48+
49+
/* v1.2 HUGE update */
50+
- merge responsive version with classic
51+
- remove post title from read more link (it's way too long)
52+
- removed readme.txt (it was pointless)
53+
- organized info for each file called in on the functions page
54+
- added custom gravatar call in comments
55+
- i'm leaving jQuery to a plugin (that way I'm not providing dated jQuery)
56+
- added translation folder
57+
- put everything inside stuff so it's easier to be translated
58+
- added an identifier in each 404 area so you know what template is showing
59+
- remove custom walker. I think that's better left for you guys to do
60+
- fixed some spelling errors
61+
- added some translation options in the comments file
62+
- added role=navigation to footer links
63+
- deleted image.php (who really uses that anyway)
64+
- added sidebar to search.php
65+
- added class to custom post type title
66+
- added link to custom meta box
67+
- removed selectivizr
68+
- updated html elements with new classes for IE
69+
- added new mobile meta tags
70+
- removed pinned site meta tag for IE9
71+
- merged base.css into style.css for one less call in the header
72+
- added styleguide page and styles (oh yea!)
73+
- added nav class to both menus
74+
- removed "Powered by Wordpress & Bones" from footer, because let's face it: we all delete this anyway.
75+
- added button class to submit comment button
76+
- removed html5 placeholder fallback (you should be using Gravity Forms)
77+
- added slug and rewrite to custom post type for easier urls
78+
- renamed the border radius mixins so they were easer to remember
79+
- removed duplicate box shadow mixin
80+
- deleted the plugins.php file
81+
- facebook og:meta can be better handled by a plugin (or Yoast's SEO plugin)
82+
- rel=me can also be handled by SEO plugin or another plugin
83+
- removed author.php (you can use archive.php or add it yourself)

archive-build-1.php

Whitespace-only changes.

archive-build.php

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?php get_header(); ?>
2+
3+
<?php
4+
$build = new WP_Query(array(
5+
'post_type'=>'build',
6+
'post_status'=>'publish',
7+
'post_parent'=>0,
8+
'order'=>'ASC'
9+
));
10+
?>
11+
12+
<?php //include('includes/sub_nav.php'); ?>
13+
14+
<div class="featured_list">
15+
<?php
16+
query_posts($query_string.'&post_parent=0&orderby=menu_order&order=ASC');
17+
while(have_posts()) : the_post(); ?>
18+
<div class="row-fluid sp-item">
19+
<div class="sp-item-image span4">
20+
<a href="<?php the_permalink(); ?>"><img src="<?php echo get_bloginfo('stylesheet_directory'); ?>/img/rack_wp.jpg"></a>
21+
</div>
22+
<div class="span8 lead">
23+
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
24+
<p><?php lorem(23);?></p>
25+
<a href="<?php the_permalink(); ?>" class="btn btn-large btn-primary">Start Now</a>
26+
</div>
27+
</div>
28+
<?php endwhile; ?>
29+
</div>
30+
31+
32+
33+
34+
35+
36+
37+
38+
<?php get_footer(); ?>

0 commit comments

Comments
 (0)