Skip to content

Commit 44a25b3

Browse files
committed
Restore old folder structure
1 parent 15cacd3 commit 44a25b3

File tree

102 files changed

+11
-12
lines changed

Some content is hidden

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

102 files changed

+11
-12
lines changed

_config.yml

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ social:
2424
url: https://socialgorithm-slack.herokuapp.com
2525

2626
# Build settings
27-
source: src
2827
markdown: kramdown
2928
highlighter: rouge
3029
permalink: pretty

src/blog.html blog.html

File renamed without changes.
File renamed without changes.
File renamed without changes.

src/favicon.ico favicon.ico

File renamed without changes.

gulpfile.js

+11-11
Original file line numberDiff line numberDiff line change
@@ -35,34 +35,34 @@ function browserSyncReload(done) {
3535
}
3636

3737
function lessCSS() {
38-
return gulp.src("src/less/new-age.less")
38+
return gulp.src("less/new-age.less")
3939
.pipe(less())
4040
.pipe(cleanCSS({ compatibility: "ie8" }))
4141
.pipe(header(themeCopyright, { pkg: pkg }))
4242
.pipe(rename({ suffix: ".min" }))
43-
.pipe(gulp.dest("src/css"))
43+
.pipe(gulp.dest("css"))
4444
.pipe(_browserSync.stream());
4545
}
4646

4747
function minifyJS() {
48-
return gulp.src("src/js/new-age.js")
48+
return gulp.src("js/new-age.js")
4949
.pipe(uglify())
5050
.pipe(header(themeCopyright, { pkg: pkg }))
5151
.pipe(rename({ suffix: ".min" }))
52-
.pipe(gulp.dest("src/js"))
52+
.pipe(gulp.dest("js"))
5353
.pipe(_browserSync.stream());
5454
};
5555

5656
// Copy vendor libraries from /node_modules into /vendor
5757
function copyVendor(done) {
5858
gulp.src(["node_modules/bootstrap/dist/**/*", "!**/npm.js", "!**/bootstrap-theme.*", "!**/*.map"])
59-
.pipe(gulp.dest("src/vendor/bootstrap"));
59+
.pipe(gulp.dest("vendor/bootstrap"));
6060

6161
gulp.src(["node_modules/jquery/dist/jquery.js", "node_modules/jquery/dist/jquery.min.js"])
62-
.pipe(gulp.dest("src/vendor/jquery"));
62+
.pipe(gulp.dest("vendor/jquery"));
6363

6464
gulp.src(["node_modules/simple-line-icons/*/*"])
65-
.pipe(gulp.dest("src/vendor/simple-line-icons"));
65+
.pipe(gulp.dest("vendor/simple-line-icons"));
6666

6767
gulp.src([
6868
"node_modules/font-awesome/**",
@@ -72,7 +72,7 @@ function copyVendor(done) {
7272
"!node_modules/font-awesome/*.md",
7373
"!node_modules/font-awesome/*.json"
7474
])
75-
.pipe(gulp.dest("src/vendor/font-awesome"))
75+
.pipe(gulp.dest("vendor/font-awesome"))
7676
done()
7777
};
7878

@@ -81,9 +81,9 @@ function jekyllBuild() {
8181
};
8282

8383
function watch(done) {
84-
gulp.watch("src/less/*.less", lessCSS);
85-
gulp.watch("src/js/*.js", minifyJS);
86-
gulp.watch(["src/*.html", "src/_includes/*.html", "src/_layouts/*.html", "src/_posts/*"], gulp.series(jekyllBuild, browserSyncReload));
84+
gulp.watch("less/*.less", lessCSS);
85+
gulp.watch("js/*.js", minifyJS);
86+
gulp.watch(["*.html", "_includes/*.html", "_layouts/*.html", "_posts/*"], gulp.series(jekyllBuild, browserSyncReload));
8787
done();
8888
};
8989

File renamed without changes.

src/img/launch.jpg img/launch.jpg

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/index.html index.html

File renamed without changes.
File renamed without changes.

src/js/classie.js js/classie.js

File renamed without changes.

src/js/creative.js js/creative.js

File renamed without changes.
File renamed without changes.
File renamed without changes.

src/js/jquery.js js/jquery.js

File renamed without changes.

src/js/new-age.js js/new-age.js

File renamed without changes.
File renamed without changes.

src/js/wow.min.js js/wow.min.js

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/team.html team.html

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/workshops.html workshops.html

File renamed without changes.

0 commit comments

Comments
 (0)