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
Content-Transfer-Encoding: 7bit | |
Content-Type: text/html; | |
charset=us-ascii | |
Message-Id: <[email protected]> | |
Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) | |
<body style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"> | |
<table cellpadding="4" style="margin-top:60px"> | |
<tbody> | |
<tr> |
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
/*! | |
* Gruntfile | |
* @author Jess Hardy | |
*/ | |
module.exports = function(grunt) { | |
pkg: grunt.file.readJSON('package.json'), | |
tag: { | |
banner: '/*!\n' + | |
' * <%= pkg.name %>\n' + | |
' * <%= pkg.title %>\n' + |
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
{ | |
"name": "pucker", | |
"description": "static site generator to baseline projects", | |
"version": "0.1.0", | |
"homepage": "http://pucker.io", | |
"author": { | |
"name": "Jess Hardy", | |
"email": "[email protected]" | |
}, | |
"license": "MIT", |
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
<script> | |
var anchors = document.getElementsByTagName("a"); | |
var host = new RegExp('/' + window.location.hostname + '/'); | |
for (var i=0; i < anchors.length; i++){ | |
if( !(host.test(anchors[i].href)) ){ | |
anchors[i].setAttribute("target", "_blank"); | |
} | |
} | |
</script> |
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
// Set all base colors | |
$colors: ( | |
red: #ff4136, | |
blue: #0074d9, | |
green: #2ecc40, | |
yellow: #ffdc00, | |
orange: #ff851b, | |
purple: #85144b, | |
gray: #aaaaaa, | |
black: #000000, |
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
#!/bin/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' |
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
// | |
// Grid system | |
// -------------------------------------------------- | |
@default-width: (@remCalc * 1200); | |
@default-columns: 12; | |
@default-colspan: 1; | |
@default-padding: 0; | |
@default-margin: 0 auto; | |
@default-gutter: 0; |
NewerOlder