-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a very basic theme and fixed running tests
There's now a very, very basic theme implemented for the generator, however it still leaves a lot to be done. At least there's something there now. It uses H5BP as a base but needs further updates, especially for the logic Jekyll requires. This fixes #25. It also fixes being able to run npm test on the repo, so now Travis will be able to test it and you can test it locally. This fixes #24 and fixes #4.
- Loading branch information
Showing
17 changed files
with
385 additions
and
31 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
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
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
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
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,6 +1,8 @@ | ||
{ | ||
"name": "<%= _.slugify(appname) %>", | ||
"version": "0.0.2", | ||
"version": "0.1.0", | ||
"dependencies": { | ||
"normalize-css": "~2.1.3", | ||
"modernizr": "~2.7.1" | ||
} | ||
} |
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
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,59 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Page Not Found</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<style> | ||
|
||
* { | ||
line-height: 1.5; | ||
margin: 0; | ||
} | ||
|
||
html { | ||
color: #888; | ||
font-family: sans-serif; | ||
text-align: center; | ||
} | ||
|
||
body { | ||
left: 50%; | ||
margin: -43px 0 0 -150px; | ||
position: absolute; | ||
top: 50%; | ||
width: 300px; | ||
} | ||
|
||
h1 { | ||
color: #555; | ||
font-size: 2em; | ||
font-weight: 400; | ||
} | ||
|
||
p { | ||
line-height: 1.2; | ||
} | ||
|
||
@media only screen and (max-width: 270px) { | ||
|
||
body { | ||
margin: 10px auto; | ||
position: static; | ||
width: 95%; | ||
} | ||
|
||
h1 { | ||
font-size: 1.5em; | ||
} | ||
|
||
} | ||
|
||
</style> | ||
</head> | ||
<body> | ||
<h1>Page Not Found</h1> | ||
<p>Sorry, but the page you were trying to view does not exist.</p> | ||
</body> | ||
</html> | ||
<!-- IE needs 512+ bytes: http://blogs.msdn.com/b/ieinternals/archive/2010/08/19/http-error-pages-in-internet-explorer.aspx --> |
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
File renamed without changes.
File renamed without changes.
Oops, something went wrong.