-
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
0 parents
commit 6da31eb
Showing
107 changed files
with
4,543 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,2 @@ | ||
<h1>404</h1> | ||
<h3>Whoops. Looks like what you're looking for can't be found.</h3> |
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,12 @@ | ||
# Bartender boilerplate for Harp | ||
|
||
Bartender is a Sass and EJS based boilerplate. Specifically it uses Bourbon and Neat from thoughtbot. | ||
|
||
## Usage | ||
Once you have Harp installed, using Bartender is super easy. All you have to do is init a new project using the `--boilerplate` or `-b` flag. | ||
|
||
``` | ||
harp init myproject --boilerplate jordanjustice/hb-bartender | ||
``` | ||
|
||
Problems? [Open an issue](https://github.com/jordanjustice/hb-bartender/issues/new) and I'll get to it as soon as I can. Thanks! |
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,14 @@ | ||
<html> | ||
<head> | ||
<title>Cheers!</title> | ||
<link rel="stylesheet" href="/css/main.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<%- yield %> | ||
<footer> | ||
<p>If you appreciate this, let me know! <a href="http://twitter.com/jordi2108">@jordi2108</a></p> | ||
</footer> | ||
</div> | ||
</body> | ||
</html> |
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,26 @@ | ||
body{ | ||
font-family: "Avenir Next", "Avenir", "Futura", "Verdana", "Roboto", sans-serif; | ||
background: #F2D653; | ||
color: #37424A; | ||
text-align: center; | ||
} | ||
|
||
h1{ | ||
font-size: 4em; | ||
} | ||
|
||
h3 { | ||
font-weight: 400; | ||
} | ||
|
||
.container { | ||
@include outer-container; | ||
@include pad (0 10px); | ||
} | ||
|
||
footer { | ||
font-size: 0.75em; | ||
a { | ||
color: inherit; | ||
} | ||
} |
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,3 @@ | ||
@import "neat/neat-helpers"; | ||
|
||
$max-width: 1200px; |
Oops, something went wrong.