Compare commits
No commits in common. "95519a4718bc0b5be8f819c512fa7fa5f9b769a5" and "addd3d29de0554ef420244e96328260d2b1babc1" have entirely different histories.
95519a4718
...
addd3d29de
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +0,0 @@
|
|||||||
node_modules
|
|
||||||
dist
|
|
||||||
build
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"tabWidth": 2,
|
|
||||||
"filepath": "*.{js, html}"
|
|
||||||
}
|
|
18
gulpfile.js
18
gulpfile.js
@ -42,14 +42,6 @@ gulp.task("images", function () {
|
|||||||
.pipe(connect.reload());
|
.pipe(connect.reload());
|
||||||
});
|
});
|
||||||
|
|
||||||
// Fonts
|
|
||||||
gulp.task("fonts", function () {
|
|
||||||
return gulp
|
|
||||||
.src(["./fonts/**"], { removeBOM: false })
|
|
||||||
.pipe(gulp.dest("./dist/fonts"))
|
|
||||||
.pipe(connect.reload());
|
|
||||||
});
|
|
||||||
|
|
||||||
gulp.task("html", function () {
|
gulp.task("html", function () {
|
||||||
return gulp
|
return gulp
|
||||||
.src("./index.html")
|
.src("./index.html")
|
||||||
@ -73,13 +65,10 @@ gulp.task("html", function () {
|
|||||||
// Clean
|
// Clean
|
||||||
gulp.task("clean", function () {
|
gulp.task("clean", function () {
|
||||||
return gulp
|
return gulp
|
||||||
.src(
|
.src(["dist/css", "dist/js", "dist/images", "dist/index.html"], {
|
||||||
["dist/css", "dist/js", "dist/images", "dist/index.html", "dist/fonts"],
|
|
||||||
{
|
|
||||||
read: false,
|
read: false,
|
||||||
allowEmpty: true,
|
allowEmpty: true,
|
||||||
}
|
})
|
||||||
)
|
|
||||||
.pipe(clean());
|
.pipe(clean());
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -87,7 +76,7 @@ gulp.task("clean", function () {
|
|||||||
gulp.task(
|
gulp.task(
|
||||||
"default",
|
"default",
|
||||||
gulp.series("clean", async function minifyAll() {
|
gulp.series("clean", async function minifyAll() {
|
||||||
return gulp.parallel("styles", "scripts", "images", "html", "fonts")();
|
return gulp.parallel("styles", "scripts", "images", "html")();
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -107,7 +96,6 @@ gulp.task("watch", function () {
|
|||||||
gulp.watch("./js/*.js", gulp.series("scripts"));
|
gulp.watch("./js/*.js", gulp.series("scripts"));
|
||||||
gulp.watch("./images/**/*", gulp.series("images"));
|
gulp.watch("./images/**/*", gulp.series("images"));
|
||||||
gulp.watch("./index.html", gulp.series("html"));
|
gulp.watch("./index.html", gulp.series("html"));
|
||||||
gulp.watch("./fonts/**/*", gulp.series("fonts"));
|
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task("dev", gulp.series("default", gulp.parallel("connect", "watch")));
|
gulp.task("dev", gulp.series("default", gulp.parallel("connect", "watch")));
|
||||||
|
14
index.html
14
index.html
@ -300,7 +300,12 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-xl-6 col-lg-6">
|
<div class="col-xl-6 col-lg-6">
|
||||||
<div class="text-center text-lg-left">
|
<div class="text-center text-lg-left">
|
||||||
<img src="images/" alt="" width="500" height="406" />
|
<img
|
||||||
|
src="images/blur-landing-corporate-03-500x406.png"
|
||||||
|
alt=""
|
||||||
|
width="500"
|
||||||
|
height="406"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -813,7 +818,12 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-xl-7 col-lg-6">
|
<div class="col-xl-7 col-lg-6">
|
||||||
<div class="text-right">
|
<div class="text-right">
|
||||||
<img src="images/" alt="" width="660" height="406" />
|
<img
|
||||||
|
src="images/landing-corporate-25-660x406.jpg"
|
||||||
|
alt=""
|
||||||
|
width="660"
|
||||||
|
height="406"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user