Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanjustice committed Oct 12, 2015
0 parents commit 6da31eb
Show file tree
Hide file tree
Showing 107 changed files with 4,543 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 404.ejs
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>
12 changes: 12 additions & 0 deletions README.md
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!
14 changes: 14 additions & 0 deletions _layout.ejs
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>
26 changes: 26 additions & 0 deletions css/_base.scss
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;
}
}
3 changes: 3 additions & 0 deletions css/_grid-settings.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@import "neat/neat-helpers";

$max-width: 1200px;
Loading

0 comments on commit 6da31eb

Please sign in to comment.