From 9de8b8cbf829c40beaa74f83f39350fe1332efb1 Mon Sep 17 00:00:00 2001 From: kostastepetes Date: Wed, 31 Jan 2024 13:23:53 +0200 Subject: [PATCH] project restructure --- index.html => docs/index.html | 0 homepage.html => example/homepage.html | 10 +++++----- {img => example/img}/brand.png | Bin {img => example/img}/coding.png | Bin {img => example/img}/graphic.png | Bin {img => example/img}/laptop.svg | 0 {img => example/img}/logo.png | Bin {img => example/img}/screenshot_demo.png | Bin {img => example/img}/screenshot_docs.png | Bin {img => example/img}/ui.png | Bin gulpfile.js | 2 +- 11 files changed, 6 insertions(+), 6 deletions(-) rename index.html => docs/index.html (100%) rename homepage.html => example/homepage.html (94%) rename {img => example/img}/brand.png (100%) rename {img => example/img}/coding.png (100%) rename {img => example/img}/graphic.png (100%) rename {img => example/img}/laptop.svg (100%) rename {img => example/img}/logo.png (100%) rename {img => example/img}/screenshot_demo.png (100%) rename {img => example/img}/screenshot_docs.png (100%) rename {img => example/img}/ui.png (100%) diff --git a/index.html b/docs/index.html similarity index 100% rename from index.html rename to docs/index.html diff --git a/homepage.html b/example/homepage.html similarity index 94% rename from homepage.html rename to example/homepage.html index f9a8825..a687e01 100644 --- a/homepage.html +++ b/example/homepage.html @@ -31,7 +31,7 @@

View Our Work
- +
@@ -55,28 +55,28 @@

Some of Our Work

Coding Club new

- +

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Totam, hic!

UI Design

- +

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Totam, hic!

Graphic Design

- +

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Totam, hic!

Brand Identity

- +

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Totam, hic!

diff --git a/img/brand.png b/example/img/brand.png similarity index 100% rename from img/brand.png rename to example/img/brand.png diff --git a/img/coding.png b/example/img/coding.png similarity index 100% rename from img/coding.png rename to example/img/coding.png diff --git a/img/graphic.png b/example/img/graphic.png similarity index 100% rename from img/graphic.png rename to example/img/graphic.png diff --git a/img/laptop.svg b/example/img/laptop.svg similarity index 100% rename from img/laptop.svg rename to example/img/laptop.svg diff --git a/img/logo.png b/example/img/logo.png similarity index 100% rename from img/logo.png rename to example/img/logo.png diff --git a/img/screenshot_demo.png b/example/img/screenshot_demo.png similarity index 100% rename from img/screenshot_demo.png rename to example/img/screenshot_demo.png diff --git a/img/screenshot_docs.png b/example/img/screenshot_docs.png similarity index 100% rename from img/screenshot_docs.png rename to example/img/screenshot_docs.png diff --git a/img/ui.png b/example/img/ui.png similarity index 100% rename from img/ui.png rename to example/img/ui.png diff --git a/gulpfile.js b/gulpfile.js index 22a14b0..7320f28 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -19,7 +19,7 @@ function minifyCSS() { } function watchTask() { - watch('classless/classless.css', minifyCSS) + watch(['sass/**/*.scss', '*.html', 'classless/classless.css'], series(buildStyles, minifyCSS)) } exports.buildStyles = buildStyles;