File tree 15 files changed +226
-10
lines changed
blog/2016/welcome-to-jekyll
15 files changed +226
-10
lines changed Original file line number Diff line number Diff line change
1
+ # Stylesheet
2
+ assets /css /app.css
3
+
4
+ # JavaScript
5
+ assets /js /all.js
6
+ rev-manifest.json
7
+
8
+ # Cache
9
+ .sass-cache /
10
+ * .sassc
11
+ * .scssc
12
+
13
+ # Mac OSX
14
+ .DS_Store
15
+ Icon
16
+ * .swp~
17
+
18
+ # Thumbnails
19
+ ._ *
20
+
21
+ # Files that might appear on external disk
22
+ .Spotlight-V100
23
+ .Trashes
24
+
25
+ # Windows
26
+ Thumbs.db
27
+ ehthumbs.db
28
+
29
+ # Folder config file
30
+ Desktop.ini
31
+
32
+ # Recycle Bin used on file shares
33
+ $RECYCLE.BIN /
34
+
35
+ # gulp.js
36
+ .gulp /
37
+ node_modules /** /*
38
+ npm-debug.log
39
+
40
+ # Jekyll
41
+ _site
42
+ .jekyll-metadata
43
+
44
+ # Vendor directory
45
+ assets /vendor /
46
+ bower_components
47
+
48
+ # Ruby
49
+ Gemfile.lock
50
+
51
+ # Composer
52
+ composer.lock
Original file line number Diff line number Diff line change
1
+ # global module:false
2
+
3
+ " use strict"
4
+
5
+ module .exports = (grunt ) ->
6
+ grunt .loadNpmTasks " grunt-bower-task"
7
+ grunt .loadNpmTasks " grunt-contrib-connect"
8
+ grunt .loadNpmTasks " grunt-contrib-copy"
9
+ grunt .loadNpmTasks " grunt-contrib-watch"
10
+ grunt .loadNpmTasks " grunt-exec"
11
+
12
+ grunt .initConfig
13
+
14
+ copy :
15
+ jquery :
16
+ files : [{
17
+ expand : true
18
+ cwd : " bower_components/jquery/dist/"
19
+ src : " jquery.min.js"
20
+ dest : " vendor/js/"
21
+ }]
22
+ bootstrap :
23
+ files : [{
24
+ expand : true
25
+ cwd : " bower_components/foundation/css/"
26
+ src : " foundation.min.css"
27
+ dest : " vendor/css/"
28
+ },
29
+ {
30
+ expand : true
31
+ cwd : " bower_components/foundation/js/"
32
+ src : " foundation.min.js"
33
+ dest : " vendor/js/"
34
+ }]
35
+
36
+ exec :
37
+ jekyll :
38
+ cmd : " jekyll build --trace"
39
+
40
+ watch :
41
+ options :
42
+ livereload : true
43
+ source :
44
+ files : [
45
+ " _drafts/**/*"
46
+ " _includes/**/*"
47
+ " _layouts/**/*"
48
+ " _posts/**/*"
49
+ " css/**/*"
50
+ " js/**/*"
51
+ " _config.yml"
52
+ " *.html"
53
+ " *.md"
54
+ ]
55
+ tasks : [
56
+ " exec:jekyll"
57
+ ]
58
+
59
+ connect :
60
+ server :
61
+ options :
62
+ port : 4000
63
+ base : ' _site'
64
+ livereload : true
65
+
66
+ grunt .registerTask " build" , [
67
+ " copy"
68
+ " exec:jekyll"
69
+ ]
70
+
71
+ grunt .registerTask " serve" , [
72
+ " build"
73
+ " connect:server"
74
+ " watch"
75
+ ]
76
+
77
+ grunt .registerTask " default" , [
78
+ " serve"
79
+ ]
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ exclude:
19
19
- " Gemfile.lock"
20
20
- " /gulp/"
21
21
- " gulpfile.js"
22
+ - " Gruntfile.coffee"
22
23
- " LICENSE.md"
23
24
- " Makefile"
24
25
- " node_modules"
Original file line number Diff line number Diff line change 7
7
< meta name ="description " content ="{{ site.description }} ">
8
8
9
9
< link rel ="stylesheet " href ="{{ "/css/main.css" | prepend: site.baseurl }}">
10
+ < link rel ="stylesheet " href ="/vendor/css/foundation.min.css ">
10
11
< link rel ="canonical " href ="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }} ">
11
12
</ head >
Original file line number Diff line number Diff line change 14
14
</ div >
15
15
16
16
{% include footer.html %}
17
-
17
+ < script src ="/vendor/js/jquery.min.js "> </ script >
18
+ < script src ="/vendor/js/foundation.min.js "> </ script >
18
19
</ body >
19
20
20
21
</ html >
Original file line number Diff line number Diff line change 10
10
< meta name ="description " content ="A collection of open source projects from Skcript ">
11
11
12
12
< link rel ="stylesheet " href ="/css/main.css ">
13
+ < link rel ="stylesheet " href ="/vendor/css/foundation.min.css ">
13
14
< link rel ="canonical " href ="http://skcript.github.io/about/ ">
14
15
</ head >
15
16
@@ -83,7 +84,7 @@ <h2 class="footer-heading">Skcript + Open Source = ❤️</h2>
83
84
< div class ="footer-col footer-col-1 ">
84
85
< ul class ="contact-list ">
85
86
< li > Skcript + Open Source = ❤️</ li >
86
- < li > < a href ="mailto: " > </ a > </ li >
87
+ < li > < a href ="mailto:friends@skcript.com " > friends@skcript.com </ a > </ li >
87
88
</ ul >
88
89
</ div >
89
90
@@ -129,7 +130,8 @@ <h2 class="footer-heading">Skcript + Open Source = ❤️</h2>
129
130
130
131
</ footer >
131
132
132
-
133
+ < script src ="/vendor/js/jquery.min.js "> </ script >
134
+ < script src ="/vendor/js/foundation.min.js "> </ script >
133
135
</ body >
134
136
135
137
</ html >
Original file line number Diff line number Diff line change 10
10
< meta name ="description " content ="A collection of open source projects from Skcript ">
11
11
12
12
< link rel ="stylesheet " href ="/css/main.css ">
13
+ < link rel ="stylesheet " href ="/vendor/css/foundation.min.css ">
13
14
< link rel ="canonical " href ="http://skcript.github.io/blog/2016/welcome-to-jekyll/ ">
14
15
</ head >
15
16
@@ -93,7 +94,7 @@ <h2 class="footer-heading">Skcript + Open Source = ❤️</h2>
93
94
< div class ="footer-col footer-col-1 ">
94
95
< ul class ="contact-list ">
95
96
< li > Skcript + Open Source = ❤️</ li >
96
- < li > < a href ="mailto: " > </ a > </ li >
97
+ < li > < a href ="mailto:friends@skcript.com " > friends@skcript.com </ a > </ li >
97
98
</ ul >
98
99
</ div >
99
100
@@ -139,7 +140,8 @@ <h2 class="footer-heading">Skcript + Open Source = ❤️</h2>
139
140
140
141
</ footer >
141
142
142
-
143
+ < script src ="/vendor/js/jquery.min.js "> </ script >
144
+ < script src ="/vendor/js/foundation.min.js "> </ script >
143
145
</ body >
144
146
145
147
</ html >
Original file line number Diff line number Diff line change 5
5
<description >A collection of open source projects from Skcript</description >
6
6
<link >http://skcript.github.io/</link >
7
7
<atom : link href =" http://skcript.github.io/feed.xml" rel =" self" type =" application/rss+xml" />
8
- <pubDate >Sun, 10 Apr 2016 20:23:10 +0530</pubDate >
9
- <lastBuildDate >Sun, 10 Apr 2016 20:23:10 +0530</lastBuildDate >
8
+ <pubDate >Sun, 10 Apr 2016 20:55:37 +0530</pubDate >
9
+ <lastBuildDate >Sun, 10 Apr 2016 20:55:37 +0530</lastBuildDate >
10
10
<generator >Jekyll v2.4.0</generator >
11
11
12
12
<item >
Original file line number Diff line number Diff line change 10
10
< meta name ="description " content ="A collection of open source projects from Skcript ">
11
11
12
12
< link rel ="stylesheet " href ="/css/main.css ">
13
+ < link rel ="stylesheet " href ="/vendor/css/foundation.min.css ">
13
14
< link rel ="canonical " href ="http://skcript.github.io/ ">
14
15
</ head >
15
16
@@ -86,7 +87,7 @@ <h2 class="footer-heading">Skcript + Open Source = ❤️</h2>
86
87
< div class ="footer-col footer-col-1 ">
87
88
< ul class ="contact-list ">
88
89
< li > Skcript + Open Source = ❤️</ li >
89
- < li > < a href ="mailto: " > </ a > </ li >
90
+ < li > < a href ="mailto:friends@skcript.com " > friends@skcript.com </ a > </ li >
90
91
</ ul >
91
92
</ div >
92
93
@@ -132,7 +133,8 @@ <h2 class="footer-heading">Skcript + Open Source = ❤️</h2>
132
133
133
134
</ footer >
134
135
135
-
136
+ < script src ="/vendor/js/jquery.min.js "> </ script >
137
+ < script src ="/vendor/js/foundation.min.js "> </ script >
136
138
</ body >
137
139
138
140
</ html >
Original file line number Diff line number Diff line change 10
10
<url >
11
11
<loc >http://skcript.github.io/</loc >
12
12
</url >
13
+ <url >
14
+ <loc >http://skcript.github.io/bower_components/modernizr/test/basic.html</loc >
15
+ <lastmod >2016-04-10T20:44:56+05:30</lastmod >
16
+ </url >
17
+ <url >
18
+ <loc >http://skcript.github.io/bower_components/modernizr/test/caniuse.html</loc >
19
+ <lastmod >2016-04-10T20:44:56+05:30</lastmod >
20
+ </url >
21
+ <url >
22
+ <loc >http://skcript.github.io/bower_components/modernizr/test/caniuse_files/form_validation.html</loc >
23
+ <lastmod >2016-04-10T20:44:56+05:30</lastmod >
24
+ </url >
25
+ <url >
26
+ <loc >http://skcript.github.io/bower_components/modernizr/test/caniuse_files/hashchange.html</loc >
27
+ <lastmod >2016-04-10T20:44:56+05:30</lastmod >
28
+ </url >
29
+ <url >
30
+ <loc >http://skcript.github.io/bower_components/modernizr/test/caniuse_files/mathml.html</loc >
31
+ <lastmod >2016-04-10T20:44:56+05:30</lastmod >
32
+ </url >
33
+ <url >
34
+ <loc >http://skcript.github.io/bower_components/modernizr/test/caniuse_files/pushstate.html</loc >
35
+ <lastmod >2016-04-10T20:44:56+05:30</lastmod >
36
+ </url >
37
+ <url >
38
+ <loc >http://skcript.github.io/bower_components/modernizr/test/caniuse_files/xhtml.html</loc >
39
+ <lastmod >2016-04-10T20:44:56+05:30</lastmod >
40
+ </url >
41
+ <url >
42
+ <loc >http://skcript.github.io/bower_components/modernizr/test/index.html</loc >
43
+ <lastmod >2016-04-10T20:44:56+05:30</lastmod >
44
+ </url >
45
+ <url >
46
+ <loc >http://skcript.github.io/bower_components/modernizr/test/js/basic.html</loc >
47
+ <lastmod >2016-04-10T20:44:56+05:30</lastmod >
48
+ </url >
13
49
</urlset >
Original file line number Diff line number Diff line change 18
18
" bower_components" ,
19
19
" test" ,
20
20
" tests"
21
- ]
21
+ ],
22
+ "dependencies" : {
23
+ "foundation" : " ^5.5.3"
24
+ }
22
25
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " skcript.github.io" ,
3
+ "version" : " 2.0.0" ,
4
+ "description" : " A collection of open source projects from Skcript" ,
5
+ "main" : " index.js" ,
6
+ "scripts" : {
7
+ "test" : " echo \" Error: no test specified\" && exit 1"
8
+ },
9
+ "repository" : {
10
+ "type" : " git" ,
11
+ "url" : " git+https://github.com/skcript/skcript.github.io.git"
12
+ },
13
+ "author" : " Karthik K" ,
14
+ "license" : " ISC" ,
15
+ "bugs" : {
16
+ "url" : " https://github.com/skcript/skcript.github.io/issues"
17
+ },
18
+ "homepage" : " https://github.com/skcript/skcript.github.io#readme" ,
19
+ "devDependencies" : {
20
+ "grunt" : " ^1.0.1" ,
21
+ "grunt-bower-task" : " ^0.4.0" ,
22
+ "grunt-contrib-connect" : " ^1.0.1" ,
23
+ "grunt-contrib-copy" : " ^1.0.0" ,
24
+ "grunt-contrib-watch" : " ^1.0.0" ,
25
+ "grunt-exec" : " ^0.4.6"
26
+ }
27
+ }
You can’t perform that action at this time.
0 commit comments