Skip to content

Commit e677fc5

Browse files
committed
Moving website to middleman - first stage
Currently only splash page is semi-done, blog is WIP and the rest is TODO
1 parent b550142 commit e677fc5

File tree

4,348 files changed

+343205
-15701
lines changed

Some content is hidden

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

4,348 files changed

+343205
-15701
lines changed

.bowerrc

-3
This file was deleted.

.gitignore

+18-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
1-
node_modules/
2-
out/
3-
src/public/vendor/
4-
.komodotools
5-
*.komodoproject
6-
.docpad.db
7-
.jshintrc
8-
.sass-cache
9-
10-
/persist/
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile ~/.gitignore_global
6+
7+
# Ignore bundler config
8+
/.bundle
9+
10+
# Ignore the build directory
11+
/build
12+
13+
# Ignore cache
14+
/.sass-cache
15+
/.cache
16+
17+
# Ignore .DS_store file
18+
.DS_Store

.gitmodules

-15
This file was deleted.

.jshintrc

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"asi": false,
3+
"indent": 2,
4+
"expr": true,
5+
"loopfunc": true,
6+
"curly": false,
7+
"white": false,
8+
"evil": true,
9+
"browser": true,
10+
"trailing": true,
11+
"forin": true,
12+
"latedef": true,
13+
"undef": true,
14+
"predef": [
15+
"module",
16+
"require"
17+
]
18+
}

Gemfile

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# If you do not have OpenSSL installed, update
2+
# the following line to use "http://" instead
3+
source 'https://rubygems.org'
4+
5+
gem "middleman", "~>3.3.7"
6+
gem 'middleman-blog'
7+
8+
# Live-reloading plugin
9+
gem "middleman-livereload", "~> 3.1.0"
10+
11+
# For faster file watcher updates on Windows:
12+
gem "wdm", "~> 0.1.0", :platforms => [:mswin, :mingw]
13+
14+
# Windows does not come with time zone data
15+
gem "tzinfo-data", platforms: [:mswin, :mingw]
16+
17+
gem 'bourbon'
18+
gem 'neat'
19+
gem 'font-awesome-middleman'

Gemfile.lock

+146
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
activesupport (4.1.9)
5+
i18n (~> 0.6, >= 0.6.9)
6+
json (~> 1.7, >= 1.7.7)
7+
minitest (~> 5.1)
8+
thread_safe (~> 0.1)
9+
tzinfo (~> 1.1)
10+
addressable (2.3.7)
11+
bourbon (4.2.1)
12+
sass (~> 3.4)
13+
thor
14+
celluloid (0.16.0)
15+
timers (~> 4.0.0)
16+
chunky_png (1.3.4)
17+
coffee-script (2.3.0)
18+
coffee-script-source
19+
execjs
20+
coffee-script-source (1.9.1)
21+
compass (1.0.3)
22+
chunky_png (~> 1.2)
23+
compass-core (~> 1.0.2)
24+
compass-import-once (~> 1.0.5)
25+
rb-fsevent (>= 0.9.3)
26+
rb-inotify (>= 0.9)
27+
sass (>= 3.3.13, < 3.5)
28+
compass-core (1.0.3)
29+
multi_json (~> 1.0)
30+
sass (>= 3.3.0, < 3.5)
31+
compass-import-once (1.0.5)
32+
sass (>= 3.2, < 3.5)
33+
em-websocket (0.5.1)
34+
eventmachine (>= 0.12.9)
35+
http_parser.rb (~> 0.6.0)
36+
erubis (2.7.0)
37+
eventmachine (1.0.7)
38+
execjs (2.3.0)
39+
ffi (1.9.6)
40+
font-awesome-middleman (4.2.3)
41+
middleman-core (~> 3.0)
42+
haml (4.0.6)
43+
tilt
44+
hike (1.2.3)
45+
hitimes (1.2.2)
46+
hooks (0.4.0)
47+
uber (~> 0.0.4)
48+
http_parser.rb (0.6.0)
49+
i18n (0.7.0)
50+
json (1.8.2)
51+
kramdown (1.5.0)
52+
listen (2.8.5)
53+
celluloid (>= 0.15.2)
54+
rb-fsevent (>= 0.9.3)
55+
rb-inotify (>= 0.9)
56+
middleman (3.3.10)
57+
coffee-script (~> 2.2)
58+
compass (>= 1.0.0, < 2.0.0)
59+
compass-import-once (= 1.0.5)
60+
execjs (~> 2.0)
61+
haml (>= 4.0.5)
62+
kramdown (~> 1.2)
63+
middleman-core (= 3.3.10)
64+
middleman-sprockets (>= 3.1.2)
65+
sass (>= 3.4.0, < 4.0)
66+
uglifier (~> 2.5)
67+
middleman-blog (3.5.3)
68+
addressable (~> 2.3.5)
69+
middleman-core (~> 3.2)
70+
tzinfo (>= 0.3.0)
71+
middleman-core (3.3.10)
72+
activesupport (~> 4.1.0)
73+
bundler (~> 1.1)
74+
erubis
75+
hooks (~> 0.3)
76+
i18n (~> 0.7.0)
77+
listen (>= 2.7.9, < 3.0)
78+
padrino-helpers (~> 0.12.3)
79+
rack (>= 1.4.5, < 2.0)
80+
rack-test (~> 0.6.2)
81+
thor (>= 0.15.2, < 2.0)
82+
tilt (~> 1.4.1, < 2.0)
83+
middleman-livereload (3.1.1)
84+
em-websocket (>= 0.2.0)
85+
middleman-core (>= 3.0.2)
86+
multi_json (~> 1.0)
87+
rack-livereload
88+
middleman-sprockets (3.4.2)
89+
middleman-core (>= 3.3)
90+
sprockets (~> 2.12.1)
91+
sprockets-helpers (~> 1.1.0)
92+
sprockets-sass (~> 1.3.0)
93+
minitest (5.5.1)
94+
multi_json (1.10.1)
95+
neat (1.7.1)
96+
bourbon (>= 4.0)
97+
sass (>= 3.3)
98+
padrino-helpers (0.12.4)
99+
i18n (~> 0.6, >= 0.6.7)
100+
padrino-support (= 0.12.4)
101+
tilt (~> 1.4.1)
102+
padrino-support (0.12.4)
103+
activesupport (>= 3.1)
104+
rack (1.6.0)
105+
rack-livereload (0.3.15)
106+
rack
107+
rack-test (0.6.3)
108+
rack (>= 1.0)
109+
rb-fsevent (0.9.4)
110+
rb-inotify (0.9.5)
111+
ffi (>= 0.5.0)
112+
sass (3.4.13)
113+
sprockets (2.12.3)
114+
hike (~> 1.2)
115+
multi_json (~> 1.0)
116+
rack (~> 1.0)
117+
tilt (~> 1.1, != 1.3.0)
118+
sprockets-helpers (1.1.0)
119+
sprockets (~> 2.0)
120+
sprockets-sass (1.3.1)
121+
sprockets (~> 2.0)
122+
tilt (~> 1.1)
123+
thor (0.19.1)
124+
thread_safe (0.3.4)
125+
tilt (1.4.1)
126+
timers (4.0.1)
127+
hitimes
128+
tzinfo (1.2.2)
129+
thread_safe (~> 0.1)
130+
uber (0.0.13)
131+
uglifier (2.7.1)
132+
execjs (>= 0.3.0)
133+
json (>= 1.8.0)
134+
135+
PLATFORMS
136+
ruby
137+
138+
DEPENDENCIES
139+
bourbon
140+
font-awesome-middleman
141+
middleman (~> 3.3.7)
142+
middleman-blog
143+
middleman-livereload (~> 3.1.0)
144+
neat
145+
tzinfo-data
146+
wdm (~> 0.1.0)

Gruntfile.js

-14
This file was deleted.

LICENSE.txt

-11
This file was deleted.

Procfile

-1
This file was deleted.

Vagrantfile

-32
This file was deleted.

_prose.yml

-34
This file was deleted.

assets/mockups/ko-website-blog.png

-291 KB
Binary file not shown.

assets/mockups/ko-website-home-v1.png

-270 KB
Binary file not shown.

assets/mockups/ko-website-home-v2.png

-887 KB
Binary file not shown.

assets/mockups/ko-website-home-v3.png

-901 KB
Binary file not shown.

assets/mockups/ko-website-home-v4.png

-906 KB
Binary file not shown.
-885 KB
Binary file not shown.

assets/mockups/ko-website-home-v5.png

-1.03 MB
Binary file not shown.

assets/mockups/ko-website-pricing.png

-328 KB
Binary file not shown.

assets/socialmediaicons-1.10.0/.gitignore

-1
This file was deleted.
-381 Bytes
Binary file not shown.
-1.15 KB
Binary file not shown.
-1.57 KB
Binary file not shown.
-3.17 KB
Binary file not shown.

0 commit comments

Comments
 (0)