This repository has been archived by the owner on Mar 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 172
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 ee7958b
Showing
16 changed files
with
820 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 @@ | ||
_site | ||
node_modules |
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,5 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
Page Not Found. |
Empty file.
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 @@ | ||
module.exports = function(grunt) { | ||
grunt.initConfig({ | ||
watch: { | ||
files: ['README.md'], | ||
tasks: ['build'] | ||
}, | ||
copy: { | ||
main: { | ||
src: "README.md", | ||
dest: "_includes/index.md", | ||
options: { | ||
process: function(content, srcpath) { | ||
return content.replace(/^# .+$/gm, ""); | ||
} | ||
} | ||
} | ||
} | ||
}); | ||
|
||
grunt.loadNpmTasks('grunt-contrib-copy'); | ||
grunt.loadNpmTasks('grunt-contrib-watch'); | ||
|
||
grunt.registerTask('build', ['copy']); | ||
grunt.registerTask('default', ['build', 'watch']); | ||
}; |
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,67 @@ | ||
# Solo | ||
|
||
Solo is a Jekyll theme that only supports **single-page websites**, but supports them well. If you want to create a single-page website that's mostly text, like <a href="https://knowyourcompany.com/" target="_blank">Know Your Company</a>, Solo would be a good choice. | ||
|
||
<a href="https://github.com/chibicode/solo"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a> | ||
|
||
<iframe src="http://ghbtns.com/github-btn.html?user=chibicode&repo=solo&type=watch&count=true&size=large" | ||
allowtransparency="true" frameborder="0" scrolling="0" width="170" height="30"></iframe><br/> | ||
|
||
## Example | ||
|
||
This page is built using Solo, as well as my <a href="https://chibicode.com/" target="_blank">personal website</a>. Solo supports lists, `<hr>`'s, tables, | ||
|
||
> blockquotes, and... | ||
~~~html | ||
<pre>code blocks with syntax highlighting.</pre> | ||
~~~ | ||
|
||
## Usage | ||
|
||
First, [install Jekyll](http://jekyllrb.com/docs/installation/). Then download Solo from its [GitHub Repository](https://github.com/poole/poole). Start Jekyll and you should see this page up and running. | ||
|
||
**The main file you'll be editing is `_includes/index.md`**. This becomes the content for the main `index.html`. | ||
|
||
### Other Files | ||
|
||
* Edit `_includes/title` to change the site title. | ||
* Edit `_includes/head.html` to add custom code to `<head>`. | ||
* Edit `_includes/scripts.html` to add custom code before `</body>`. | ||
* Edit `CNAME` to host on a custom domain. | ||
|
||
### Don't use `<h1>` tags | ||
|
||
Wthin `solo.md`, do not use `<h1>` tags - `<h1>` is reserved for the site title. | ||
|
||
### Keep Solo up to date | ||
|
||
Instead of downloading, you can [fork Solo](https://github.com/chibicode/solo/fork) and [use "upstream" strategy described on this page](https://help.github.com/articles/fork-a-repo) to keep Solo up to date. | ||
|
||
## Author | ||
|
||
Shu Uesugi ([Twitter](http://twitter.com/chibicode)/[GitHub](http://github.com/chibicode)). | ||
|
||
![Shu Uesugi](http://www.gravatar.com/avatar/b868d84bbe2ed30ec45c9253e1c1cefe.jpg?s=100) | ||
|
||
### License | ||
|
||
Copyright (c) 2014 Shusaku Uesugi | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
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 @@ | ||
markdown: redcarpet | ||
pygments: true |
Empty file.
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,67 @@ | ||
|
||
|
||
Solo is a Jekyll theme that only supports **single-page websites**, but supports them well. If you want to create a single-page website that's mostly text, like <a href="https://knowyourcompany.com/" target="_blank">Know Your Company</a>, Solo would be a good choice. | ||
|
||
<a href="https://github.com/chibicode/solo"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a> | ||
|
||
<iframe src="http://ghbtns.com/github-btn.html?user=chibicode&repo=solo&type=watch&count=true&size=large" | ||
allowtransparency="true" frameborder="0" scrolling="0" width="170" height="30"></iframe><br/> | ||
|
||
## Example | ||
|
||
This page is built using Solo, as well as my <a href="https://chibicode.com/" target="_blank">personal website</a>. Solo supports lists, `<hr>`'s, tables, | ||
|
||
> blockquotes, and... | ||
~~~html | ||
<pre>code blocks with syntax highlighting.</pre> | ||
~~~ | ||
|
||
## Usage | ||
|
||
First, [install Jekyll](http://jekyllrb.com/docs/installation/). Then download Solo from its [GitHub Repository](https://github.com/poole/poole). Start Jekyll and you should see this page up and running. | ||
|
||
**The main file you'll be editing is `_includes/index.md`**. This becomes the content for the main `index.html`. | ||
|
||
### Other Files | ||
|
||
* Edit `_includes/title` to change the site title. | ||
* Edit `_includes/head.html` to add custom code to `<head>`. | ||
* Edit `_includes/scripts.html` to add custom code before `</body>`. | ||
* Edit `CNAME` to host on a custom domain. | ||
|
||
### Don't use `<h1>` tags | ||
|
||
Wthin `solo.md`, do not use `<h1>` tags - `<h1>` is reserved for the site title. | ||
|
||
### Keep Solo up to date | ||
|
||
Instead of downloading, you can [fork Solo](https://github.com/chibicode/solo/fork) and [use "upstream" strategy described on this page](https://help.github.com/articles/fork-a-repo) to keep Solo up to date. | ||
|
||
## Author | ||
|
||
Shu Uesugi ([Twitter](http://twitter.com/chibicode)/[GitHub](http://github.com/chibicode)). | ||
|
||
![Shu Uesugi](http://www.gravatar.com/avatar/b868d84bbe2ed30ec45c9253e1c1cefe.jpg?s=100) | ||
|
||
### License | ||
|
||
Copyright (c) 2014 Shusaku Uesugi | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
Empty file.
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 @@ | ||
Solo |
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,21 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>{% include title %}</title> | ||
<link href='http://fonts.googleapis.com/css?family=Roboto:400,400italic,700' rel='stylesheet' type='text/css'> | ||
<link rel="stylesheet" href="/css/normalize.css"> | ||
<link rel="stylesheet" href="/css/syntax.css"> | ||
<link rel="stylesheet" href="/css/solo.css"> | ||
{% include head.html %} | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1><a href="/">{% include title %}</a></h1> | ||
{{ content }} | ||
</div> | ||
{% include scripts.html %} | ||
</body> | ||
</html> |
Oops, something went wrong.