Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed dist/fonts/Roboto-Regular-webfont.woff
Binary file not shown.
30 changes: 0 additions & 30 deletions dist/images/logo.svg

This file was deleted.

13 changes: 0 additions & 13 deletions dist/index.html

This file was deleted.

3 changes: 0 additions & 3 deletions dist/scripts/main.js

This file was deleted.

14 changes: 0 additions & 14 deletions dist/styles/main.css

This file was deleted.

1 change: 0 additions & 1 deletion dist/styles/main.css.map

This file was deleted.

20 changes: 18 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ const imagesBlob = 'src/images/**';
const fontsBlob = 'src/fonts/**';
const stylesBlob = 'src/styles/**';
const jsBlob = 'src/scripts/**';
const faviconBlob = 'src/favicon/**';

const { series, parallel } = gulp;

gulp.task('cleanDist', function() {
return gulp.src(distDirectory, { read: false, allowEmpty: true })
return gulp.src(distDirectory, {
read: false, allowEmpty: true,
})
.pipe(clean());
});

Expand All @@ -34,6 +37,8 @@ gulp.task('processHtml', function() {
}, function(filepath, issues) {
issues.forEach(function(issue) {
const { line, column, code, msg } = issue;

// eslint-disable-next-line no-console
console.log(
` ❌ ${colors.red('htmllint error')}
📁 file: ${filepath}
Expand All @@ -48,6 +53,11 @@ gulp.task('processImages', function() {
.pipe(gulp.dest(`${distDirectory}/images/`));
});

gulp.task('processFavicon', function() {
return gulp.src(faviconBlob)
.pipe(gulp.dest(distDirectory));
});

gulp.task('processFonts', function() {
return gulp.src(fontsBlob)
.pipe(gulp.dest(`${distDirectory}/fonts/`));
Expand All @@ -59,7 +69,9 @@ gulp.task('lintCss', function() {
.pipe(gulpStylelint({
failAfterError: false,
reporters: [
{ formatter: 'string', console: true },
{
formatter: 'string', console: true,
},
],
debug: true,
}));
Expand Down Expand Up @@ -91,6 +103,7 @@ gulp.task('build', series(
'processStyles',
'processHtml',
'processImages',
'processFavicon',
'processFonts',
'processJs',
)
Expand All @@ -110,6 +123,9 @@ gulp.task('serve', function() {
gulp.watch(imagesBlob, series('processImages'))
.on('change', browserSync.reload);

gulp.watch(faviconBlob, series('processFavicon'))
.on('change', browserSync.reload);

gulp.watch(fontsBlob, series('processFonts'))
.on('change', browserSync.reload);

Expand Down
Binary file added src/favicon/android-icon-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/android-icon-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/android-icon-36x36.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/android-icon-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/android-icon-72x72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/android-icon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/apple-icon-114x114.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/apple-icon-120x120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/apple-icon-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/apple-icon-152x152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/apple-icon-180x180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/apple-icon-57x57.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/apple-icon-60x60.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/apple-icon-72x72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/apple-icon-76x76.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/apple-icon-precomposed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/apple-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/favicon/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig><msapplication><tile><square70x70logo src="/ms-icon-70x70.png"/><square150x150logo src="/ms-icon-150x150.png"/><square310x310logo src="/ms-icon-310x310.png"/><TileColor>#ffffff</TileColor></tile></msapplication></browserconfig>
Binary file added src/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/favicon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/favicon.ico
Binary file not shown.
Binary file added src/favicon/ms-icon-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/ms-icon-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/ms-icon-310x310.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/favicon/ms-icon-70x70.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/fonts/Mark-Heavy.ttf
Binary file not shown.
Binary file added src/fonts/Mark-Medium.ttf
Binary file not shown.
Binary file added src/fonts/Mark-Regular.ttf
Binary file not shown.
Binary file added src/fonts/Quantum.otf
Binary file not shown.
Binary file removed src/fonts/Roboto-Regular-webfont.woff
Binary file not shown.
Binary file added src/images/about-product.png
Binary file added src/images/about-product_mobile.png
9 changes: 9 additions & 0 deletions src/images/control-panel.svg
14 changes: 14 additions & 0 deletions src/images/education.svg
3 changes: 3 additions & 0 deletions src/images/facebook.svg
6 changes: 6 additions & 0 deletions src/images/fitness.svg
Binary file added src/images/katTech.png
Binary file added src/images/katVR__tablet.png
Binary file added src/images/katVR__tablet1.png
Binary file added src/images/katVR__tablet2.png
Binary file added src/images/katVR_lg.png
8 changes: 8 additions & 0 deletions src/images/katVR_logo.svg
Binary file added src/images/katVR_md.png
Binary file added src/images/katVR_mobile.png
34 changes: 34 additions & 0 deletions src/images/network.svg
3 changes: 3 additions & 0 deletions src/images/robot.svg
Loading