-
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.
Secondary commit - switching to a Yo template
- Loading branch information
Showing
16 changed files
with
497 additions
and
21 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"directory" : "src/components" | ||
"directory": "bower_components" | ||
} |
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,25 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
|
||
[*] | ||
|
||
# change these settings to your own preference | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# we recommend you to keep these unchanged | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[{package,bower}.json] | ||
indent_style = space | ||
indent_size = 2 |
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 @@ | ||
* text=auto |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
*.DS_Store | ||
node_modules | ||
dist | ||
.tmp | ||
.sass-cache | ||
node_modules/ | ||
dist/ | ||
src/components/ | ||
bower_components | ||
test/bower_components |
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 @@ | ||
{ | ||
"generator-mocha": {} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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,102 @@ | ||
<!doctype html> | ||
<html class="no-js" lang=""> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="description" content=""> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>discworld</title> | ||
|
||
<link rel="apple-touch-icon" href="apple-touch-icon.png"> | ||
<!-- Place favicon.ico in the root directory --> | ||
|
||
<!-- build:css styles/vendor.css --> | ||
<!-- bower:css --> | ||
<!-- endbower --> | ||
<!-- endbuild --> | ||
|
||
<!-- build:css styles/main.css --> | ||
<link rel="stylesheet" href="styles/main.css"> | ||
<!-- endbuild --> | ||
|
||
<!-- build:js scripts/vendor/modernizr.js --> | ||
<script src="/bower_components/modernizr/modernizr.js"></script> | ||
<!-- endbuild --> | ||
</head> | ||
<body> | ||
<!--[if lt IE 10]> | ||
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> | ||
<![endif]--> | ||
|
||
<div class="container"> | ||
<div class="header"> | ||
<ul class="nav nav-pills pull-right"> | ||
<li class="active"><a href="#">Home</a></li> | ||
<li><a href="#">About</a></li> | ||
<li><a href="#">Contact</a></li> | ||
</ul> | ||
<h3 class="text-muted">discworld</h3> | ||
</div> | ||
|
||
<div class="jumbotron"> | ||
<h1>'Allo, 'Allo!</h1> | ||
<p class="lead">Always a pleasure scaffolding your apps.</p> | ||
<p><a class="btn btn-lg btn-success" href="#">Splendid!</a></p> | ||
</div> | ||
|
||
<div class="row marketing"> | ||
<div class="col-lg-6"> | ||
<h4>HTML5 Boilerplate</h4> | ||
<p>HTML5 Boilerplate is a professional front-end template for building fast, robust, and adaptable web apps or sites.</p> | ||
|
||
<h4>Sass</h4> | ||
<p>Sass is the most mature, stable, and powerful professional grade CSS extension language in the world.</p> | ||
|
||
<h4>Bootstrap</h4> | ||
<p>Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.</p> | ||
<h4>Modernizr</h4> | ||
<p>Modernizr is an open-source JavaScript library that helps you build the next generation of HTML5 and CSS3-powered websites.</p> | ||
|
||
</div> | ||
</div> | ||
|
||
<div class="footer"> | ||
<p>♥ from the Yeoman team</p> | ||
</div> | ||
</div> | ||
|
||
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. --> | ||
<script> | ||
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= | ||
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; | ||
e=o.createElement(i);r=o.getElementsByTagName(i)[0]; | ||
e.src='https://www.google-analytics.com/analytics.js'; | ||
r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); | ||
ga('create','UA-XXXXX-X');ga('send','pageview'); | ||
</script> | ||
|
||
<!-- build:js scripts/vendor.js --> | ||
<!-- bower:js --> | ||
<script src="/bower_components/jquery/dist/jquery.js"></script> | ||
<!-- endbower --> | ||
<!-- endbuild --> | ||
|
||
<!-- build:js scripts/plugins.js --> | ||
<script src="/bower_components/bootstrap-sass/assets/javascripts/bootstrap/affix.js"></script> | ||
<script src="/bower_components/bootstrap-sass/assets/javascripts/bootstrap/alert.js"></script> | ||
<script src="/bower_components/bootstrap-sass/assets/javascripts/bootstrap/dropdown.js"></script> | ||
<script src="/bower_components/bootstrap-sass/assets/javascripts/bootstrap/tooltip.js"></script> | ||
<script src="/bower_components/bootstrap-sass/assets/javascripts/bootstrap/modal.js"></script> | ||
<script src="/bower_components/bootstrap-sass/assets/javascripts/bootstrap/transition.js"></script> | ||
<script src="/bower_components/bootstrap-sass/assets/javascripts/bootstrap/button.js"></script> | ||
<script src="/bower_components/bootstrap-sass/assets/javascripts/bootstrap/popover.js"></script> | ||
<script src="/bower_components/bootstrap-sass/assets/javascripts/bootstrap/carousel.js"></script> | ||
<script src="/bower_components/bootstrap-sass/assets/javascripts/bootstrap/scrollspy.js"></script> | ||
<script src="/bower_components/bootstrap-sass/assets/javascripts/bootstrap/collapse.js"></script> | ||
<script src="/bower_components/bootstrap-sass/assets/javascripts/bootstrap/tab.js"></script> | ||
<!-- endbuild --> | ||
|
||
<!-- build:js scripts/main.js --> | ||
<script src="scripts/main.js"></script> | ||
<!-- endbuild --> | ||
</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,4 @@ | ||
# robotstxt.org/ | ||
|
||
User-agent: * | ||
Disallow: |
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 @@ | ||
console.log('\'Allo \'Allo!'); |
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,93 @@ | ||
$icon-font-path: '../fonts/'; | ||
|
||
// bower:scss | ||
@import "bower_components/bootstrap-sass/assets/stylesheets/_bootstrap.scss"; | ||
// endbower | ||
|
||
.browserupgrade { | ||
margin: 0.2em 0; | ||
background: #ccc; | ||
color: #000; | ||
padding: 0.2em 0; | ||
} | ||
|
||
/* Space out content a bit */ | ||
body { | ||
padding-top: 20px; | ||
padding-bottom: 20px; | ||
} | ||
|
||
/* Everything but the jumbotron gets side spacing for mobile first views */ | ||
.header, | ||
.marketing, | ||
.footer { | ||
padding-left: 15px; | ||
padding-right: 15px; | ||
} | ||
|
||
/* Custom page header */ | ||
.header { | ||
border-bottom: 1px solid #e5e5e5; | ||
|
||
/* Make the masthead heading the same height as the navigation */ | ||
h3 { | ||
margin-top: 0; | ||
margin-bottom: 0; | ||
line-height: 40px; | ||
padding-bottom: 19px; | ||
} | ||
} | ||
|
||
/* Custom page footer */ | ||
.footer { | ||
padding-top: 19px; | ||
color: #777; | ||
border-top: 1px solid #e5e5e5; | ||
} | ||
|
||
.container-narrow > hr { | ||
margin: 30px 0; | ||
} | ||
|
||
/* Main marketing message and sign up button */ | ||
.jumbotron { | ||
text-align: center; | ||
border-bottom: 1px solid #e5e5e5; | ||
.btn { | ||
font-size: 21px; | ||
padding: 14px 24px; | ||
} | ||
} | ||
|
||
/* Supporting marketing content */ | ||
.marketing { | ||
margin: 40px 0; | ||
p + h4 { | ||
margin-top: 28px; | ||
} | ||
} | ||
|
||
/* Responsive: Portrait tablets and up */ | ||
@media screen and (min-width: 768px) { | ||
.container { | ||
max-width: 730px; | ||
} | ||
|
||
/* Remove the padding we set earlier */ | ||
.header, | ||
.marketing, | ||
.footer { | ||
padding-left: 0; | ||
padding-right: 0; | ||
} | ||
|
||
/* Space out the masthead */ | ||
.header { | ||
margin-bottom: 30px; | ||
} | ||
|
||
/* Remove the bottom border on the jumbotron for visual effect */ | ||
.jumbotron { | ||
border-bottom: 0; | ||
} | ||
} |
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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
{ | ||
"name": "Discworld", | ||
"version": "0.0.0", | ||
"authors": [ | ||
"Nicholas Thompson <[email protected]>" | ||
], | ||
"description": "", | ||
"main": "index.html", | ||
"license": "GPLv3", | ||
"name": "discworld", | ||
"private": true, | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"dependencies": { | ||
"bootstrap-sass": "~3.3.5", | ||
"modernizr": "~2.8.1" | ||
}, | ||
"overrides": { | ||
"bootstrap-sass": { | ||
"main": [ | ||
"assets/stylesheets/_bootstrap.scss", | ||
"assets/fonts/bootstrap/*", | ||
"assets/javascripts/bootstrap.js" | ||
] | ||
} | ||
}, | ||
"devDependencies": { | ||
"jquery": "~2.1.4" | ||
"chai": "~3.3.0", | ||
"mocha": "~2.3.3" | ||
} | ||
} |
Oops, something went wrong.