-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Psyphant
committed
Oct 2, 2013
0 parents
commit faabc2a
Showing
78 changed files
with
12,009 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
# Custom for Visual Studio | ||
*.cs diff=csharp | ||
*.sln merge=union | ||
*.csproj merge=union | ||
*.vbproj merge=union | ||
*.fsproj merge=union | ||
*.dbproj merge=union | ||
|
||
# Standard to msysgit | ||
*.doc diff=astextplain | ||
*.DOC diff=astextplain | ||
*.docx diff=astextplain | ||
*.DOCX diff=astextplain | ||
*.dot diff=astextplain | ||
*.DOT diff=astextplain | ||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
*.rtf diff=astextplain | ||
*.RTF diff=astextplain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,215 @@ | ||
################# | ||
## Eclipse | ||
################# | ||
|
||
*.pydevproject | ||
.project | ||
.metadata | ||
bin/ | ||
tmp/ | ||
*.tmp | ||
*.bak | ||
*.swp | ||
*~.nib | ||
local.properties | ||
.classpath | ||
.settings/ | ||
.loadpath | ||
|
||
# External tool builders | ||
.externalToolBuilders/ | ||
|
||
# Locally stored "Eclipse launch configurations" | ||
*.launch | ||
|
||
# CDT-specific | ||
.cproject | ||
|
||
# PDT-specific | ||
.buildpath | ||
|
||
|
||
################# | ||
## Visual Studio | ||
################# | ||
|
||
## Ignore Visual Studio temporary files, build results, and | ||
## files generated by popular Visual Studio add-ons. | ||
|
||
# User-specific files | ||
*.suo | ||
*.user | ||
*.sln.docstates | ||
|
||
# Build results | ||
|
||
[Dd]ebug/ | ||
[Rr]elease/ | ||
x64/ | ||
build/ | ||
[Bb]in/ | ||
[Oo]bj/ | ||
|
||
# MSTest test Results | ||
[Tt]est[Rr]esult*/ | ||
[Bb]uild[Ll]og.* | ||
|
||
*_i.c | ||
*_p.c | ||
*.ilk | ||
*.meta | ||
*.obj | ||
*.pch | ||
*.pdb | ||
*.pgc | ||
*.pgd | ||
*.rsp | ||
*.sbr | ||
*.tlb | ||
*.tli | ||
*.tlh | ||
*.tmp | ||
*.tmp_proj | ||
*.log | ||
*.vspscc | ||
*.vssscc | ||
.builds | ||
*.pidb | ||
*.log | ||
*.scc | ||
|
||
# Visual C++ cache files | ||
ipch/ | ||
*.aps | ||
*.ncb | ||
*.opensdf | ||
*.sdf | ||
*.cachefile | ||
|
||
# Visual Studio profiler | ||
*.psess | ||
*.vsp | ||
*.vspx | ||
|
||
# Guidance Automation Toolkit | ||
*.gpState | ||
|
||
# ReSharper is a .NET coding add-in | ||
_ReSharper*/ | ||
*.[Rr]e[Ss]harper | ||
|
||
# TeamCity is a build add-in | ||
_TeamCity* | ||
|
||
# DotCover is a Code Coverage Tool | ||
*.dotCover | ||
|
||
# NCrunch | ||
*.ncrunch* | ||
.*crunch*.local.xml | ||
|
||
# Installshield output folder | ||
[Ee]xpress/ | ||
|
||
# DocProject is a documentation generator add-in | ||
DocProject/buildhelp/ | ||
DocProject/Help/*.HxT | ||
DocProject/Help/*.HxC | ||
DocProject/Help/*.hhc | ||
DocProject/Help/*.hhk | ||
DocProject/Help/*.hhp | ||
DocProject/Help/Html2 | ||
DocProject/Help/html | ||
|
||
# Click-Once directory | ||
publish/ | ||
|
||
# Publish Web Output | ||
*.Publish.xml | ||
*.pubxml | ||
|
||
# NuGet Packages Directory | ||
## TODO: If you have NuGet Package Restore enabled, uncomment the next line | ||
#packages/ | ||
|
||
# Windows Azure Build Output | ||
csx | ||
*.build.csdef | ||
|
||
# Windows Store app package directory | ||
AppPackages/ | ||
|
||
# Others | ||
sql/ | ||
*.Cache | ||
ClientBin/ | ||
[Ss]tyle[Cc]op.* | ||
~$* | ||
*~ | ||
*.dbmdl | ||
*.[Pp]ublish.xml | ||
*.pfx | ||
*.publishsettings | ||
|
||
# RIA/Silverlight projects | ||
Generated_Code/ | ||
|
||
# Backup & report files from converting an old project file to a newer | ||
# Visual Studio version. Backup files are not needed, because we have git ;-) | ||
_UpgradeReport_Files/ | ||
Backup*/ | ||
UpgradeLog*.XML | ||
UpgradeLog*.htm | ||
|
||
# SQL Server files | ||
App_Data/*.mdf | ||
App_Data/*.ldf | ||
|
||
############# | ||
## Windows detritus | ||
############# | ||
|
||
# Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Mac crap | ||
.DS_Store | ||
|
||
|
||
############# | ||
## Python | ||
############# | ||
|
||
*.py[co] | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
dist/ | ||
build/ | ||
eggs/ | ||
parts/ | ||
var/ | ||
sdist/ | ||
develop-eggs/ | ||
.installed.cfg | ||
|
||
# Installer logs | ||
pip-log.txt | ||
|
||
# Unit test / coverage reports | ||
.coverage | ||
.tox | ||
|
||
#Translations | ||
*.mo | ||
|
||
#Mr Developer | ||
.mr.developer.cfg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
Bones.esproj/user.Eddie.espressostorage | ||
|
||
Bones.esproj/Project.espressostorage | ||
|
||
.project | ||
|
||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php get_header(); ?> | ||
|
||
<div id="content"> | ||
|
||
<div id="inner-content" class="wrap clearfix"> | ||
|
||
<div id="main" class="eightcol first clearfix" role="main"> | ||
|
||
<article id="post-not-found" class="hentry clearfix"> | ||
|
||
<header class="article-header"> | ||
|
||
<h1><?php _e("Epic 404 - Article Not Found", "beattheme"); ?></h1> | ||
|
||
</header> <!-- end article header --> | ||
|
||
<section class="entry-content"> | ||
|
||
<p><?php _e("The article you were looking for was not found, but maybe try looking again!", "beattheme"); ?></p> | ||
|
||
</section> <!-- end article section --> | ||
|
||
<section class="search"> | ||
|
||
<p><?php get_search_form(); ?></p> | ||
|
||
</section> <!-- end search section --> | ||
|
||
<footer class="article-footer"> | ||
|
||
<p><?php _e("This is the 404.php template.", "beattheme"); ?></p> | ||
|
||
</footer> <!-- end article footer --> | ||
|
||
</article> <!-- end article --> | ||
|
||
</div> <!-- end #main --> | ||
|
||
</div> <!-- end #inner-content --> | ||
|
||
</div> <!-- end #content --> | ||
|
||
<?php get_footer(); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/****************************************************************** | ||
Beatzentrale | ||
A Lightweight Wordpress Development Theme | ||
|
||
_______________________________________________________________ | ||
HEADS UP!!! | ||
Bones & Bones (Responsive Edition) have been merged. | ||
_______________________________________________________________ | ||
|
||
Bones is designed to make the life of developers easier. It's built | ||
using HTML5 & has a strong semantic foundation. It was updated recently | ||
using some of the HTML5 Boilerplate's recommended markup and setup. | ||
It's constantly growing so be sure to check back often if you are a | ||
frequent user. I'm always open to contribution. :) | ||
|
||
Designed by Eddie Machado | ||
http://themble.com/bones | ||
|
||
License: WTFPL | ||
License URI: http://sam.zoy.org/wtfpl/ | ||
Are You Serious? Yes. | ||
|
||
Special Thanks to: | ||
Paul Irish & the HTML5 Boilerplate | ||
Yoast for some WP functions & optimization ideas | ||
Andrew Rogers for code optimization | ||
David Dellanave for speed & code optimization | ||
and several other developers. :) | ||
|
||
Submit Bugs & or Fixes: | ||
https://github.com/eddiemachado/bones/issues | ||
|
||
To view Release & Update Notes, read the log.txt file inside | ||
the library folder. | ||
|
||
******************************************************************/ | ||
|
||
/* v1.25 update */ | ||
- updated custom post type page for translation | ||
- added => to responsive jquery | ||
- cleaned up theme tags (which make NO sense, but are best practice, go figure) | ||
- updated html element to match hb5 | ||
- fixed echo problem on admin.php | ||
- updated normalize (LESS also had some missing styles so I added them) | ||
- GetComputedStyle fix for IE (for responsive js) | ||
- cleaned up mixins (border radius) | ||
- added translations! (Chinese, Spanish) | ||
|
||
/* v1.2 HUGE update */ | ||
- merge responsive version with classic | ||
- remove post title from read more link (it's way too long) | ||
- removed readme.txt (it was pointless) | ||
- organized info for each file called in on the functions page | ||
- added custom gravatar call in comments | ||
- i'm leaving jQuery to a plugin (that way I'm not providing dated jQuery) | ||
- added translation folder | ||
- put everything inside stuff so it's easier to be translated | ||
- added an identifier in each 404 area so you know what template is showing | ||
- remove custom walker. I think that's better left for you guys to do | ||
- fixed some spelling errors | ||
- added some translation options in the comments file | ||
- added role=navigation to footer links | ||
- deleted image.php (who really uses that anyway) | ||
- added sidebar to search.php | ||
- added class to custom post type title | ||
- added link to custom meta box | ||
- removed selectivizr | ||
- updated html elements with new classes for IE | ||
- added new mobile meta tags | ||
- removed pinned site meta tag for IE9 | ||
- merged base.css into style.css for one less call in the header | ||
- added styleguide page and styles (oh yea!) | ||
- added nav class to both menus | ||
- removed "Powered by Wordpress & Bones" from footer, because let's face it: we all delete this anyway. | ||
- added button class to submit comment button | ||
- removed html5 placeholder fallback (you should be using Gravity Forms) | ||
- added slug and rewrite to custom post type for easier urls | ||
- renamed the border radius mixins so they were easer to remember | ||
- removed duplicate box shadow mixin | ||
- deleted the plugins.php file | ||
- facebook og:meta can be better handled by a plugin (or Yoast's SEO plugin) | ||
- rel=me can also be handled by SEO plugin or another plugin | ||
- removed author.php (you can use archive.php or add it yourself) |
Oops, something went wrong.