Skip to content

Commit 93067aa

Browse files
committed
new theme
1 parent fc841f1 commit 93067aa

File tree

82 files changed

+7053
-2643
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+7053
-2643
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_site/
2+
.DS_Store

404.html

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: base
3+
---
4+
5+
<h1>404</h1>
6+
<p>Get back to blog</p>

CNAME

Whitespace-only changes.

Gemfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'jekyll'
4+
gem 'jekyll-assets'
5+
gem 'maruku'
6+
gem 'rake'
7+
gem 'sass'
8+
gem 'uglifier'
9+
gem 'github-pages'

LICENSE

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2013 Kippt, Inc.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+62-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,63 @@
1-
software-craftsmanship-new-york.github.io
2-
=========================================
1+
# Jekyll Incorporated
2+
Modern Jekyll based blog. Great for companies, products or anything. See live at [blog.sendtoinc.com](http://blog.sendtoinc.com)
3+
4+
## Installation & Usage
5+
bundle install
6+
jekyll serve --watch
7+
8+
_Note: Requires Ruby version 1.9.3 =>. For example use [rbenv](https://github.com/sstephenson/rbenv)_
9+
10+
## Configuration
11+
Edit: _config.yml (general options), main.css (theme colors &amp; fonts)
12+
13+
```
14+
jekyll-incorporated/
15+
├── _config.yml
16+
├── _assets/
17+
├── stylesheets/
18+
├── main.scss
19+
```
20+
21+
_Note: when editing _config.yml, you need to restart jekyll to see the changes.__
22+
23+
24+
## Publish to Github Pages
25+
1. Add your domain to _CNAME_
26+
2. Edit your repo address at _Rakefile_
27+
28+
Run rake task. **NOTE: It will deploy the generated site to _gh-pages_ branch overwriting it**
29+
```
30+
rake site:publish
31+
```
32+
33+
## Usage examples
34+
35+
* Adroll Engineering http://tech.adroll.com/
36+
* Brace.io blog http://blog.brace.io/
37+
* Spark.io blog http://blog.spark.io/
38+
* Department of Better Technology http://blog.dobt.co/
39+
40+
## Authors
41+
42+
Originally build for [sendtoinc.com](https://sendtoinc.com), your workspace for sharing and organizing knowledge
43+
44+
**Karri Saarinen**
45+
46+
+ [http://twitter.com/karrisaarinen](http://twitter.com/karrisaarinen)
47+
+ [http://github.com/ksaa](http://github.com/ksaa)
48+
49+
**Jori Lallo**
50+
51+
+ [http://twitter.com/jorilallo](http://twitter.com/jorilallo)
52+
+ [http://github.com/jorde](http://github.com/jorilallo)
53+
54+
## Todo:
55+
56+
+ Documentation
57+
+ Less config files
58+
+ Better deploy scripts
59+
60+
## Copyright and license
61+
62+
Copyright 2013 Kippt Inc. under [The MIT License ](LICENSE)
363

4-
Software Craftsmanship New York blog/wiki

Rakefile

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
require "rubygems"
2+
require "tmpdir"
3+
4+
require "bundler/setup"
5+
require "jekyll"
6+
7+
8+
# Change your GitHub reponame eg. "kippt/jekyll-incorporated"
9+
GITHUB_REPONAME = ""
10+
11+
12+
namespace :site do
13+
desc "Generate blog files"
14+
task :generate do
15+
Jekyll::Site.new(Jekyll.configuration({
16+
"source" => ".",
17+
"destination" => "_site"
18+
})).process
19+
end
20+
21+
22+
desc "Generate and publish blog to gh-pages"
23+
task :publish => [:generate] do
24+
Dir.mktmpdir do |tmp|
25+
cp_r "_site/.", tmp
26+
Dir.chdir tmp
27+
system "git init"
28+
system "git add ."
29+
message = "Site updated at #{Time.now.utc}"
30+
system "git commit -m #{message.inspect}"
31+
system "git remote add origin [email protected]:#{GITHUB_REPONAME}.git"
32+
system "git push origin master:refs/heads/gh-pages --force"
33+
end
34+
end
35+
end

_assets/javascripts/main.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
$(".full img").on("click", function() {
2+
$(this).toggleClass("zoom");
3+
});

0 commit comments

Comments
 (0)