From 81357e0ec39bde74001d63d71d336c7674bb4b5b Mon Sep 17 00:00:00 2001 From: Gandalf86 Date: Sun, 13 Oct 2019 10:17:00 +0000 Subject: [PATCH 1/8] Add setup instructions to README.md --- README.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 55f4ef6..c0af7e2 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,23 @@ An MIT licensed template bundled with a minimal style guide to build websites fa ![Evie Landing](https://github.com/anges244/evie/blob/master/docs/images/preview_landing.png) + +Setup +----- + +System dependencies are: + +* npm (v6.0.0+) +* gulp (v4.0.0+) + +To install them, e.g. on Debian use: `# apt-get install npm gulp`. Check your npm and gulp versions using `$ npm -v` and `$ gulp -v`, respectively. If your version is lower than the required versions listed above, install the up to date versions with `# npm install -g npm@latest gulp@latest`. Restart your shell for the changes to take effect. + +Next, install the Javascript dependencies for Evie by running `$ npm install` in the Evie directory. Since Evie is a statically deployed website, security warnings from npm can be safely ignored. + + Usage ----- _This is still under development. For better instructions, head over to the [project website](https://evie.undraw.co)._ -This version contains the development setup, with the source files (SASS,EJS) and a Gulp/Express.js setup. To use it, run `gulp`. This will start the server with live reloading. If you just want to compile a customized production version, the path is "src/theme/" and there you can change the SASS files, customize colors, make any change you want and run `gulp build`. This will generate a "theme" folder which contains your static website. - -### Real documentation coming soon +This version contains the development setup, with the source files (SASS,EJS) and a Gulp/Express.js setup. To use it, run `gulp`. This will start the server with live reloading. If you just want to compile a customized production version, the path is "src/theme/" and there you can change the SASS files, customize colors, make any change you want and run `gulp build`. This will generate a "Evie" folder which contains your static website. From d539e097e8ce474f924dedbf5b7123edfd8a624b Mon Sep 17 00:00:00 2001 From: Gandalf86 Date: Sun, 13 Oct 2019 10:28:06 +0000 Subject: [PATCH 2/8] package-lock.json includes a new "optional" field generated by npm --- package-lock.json | 41 ++++++++++++++++++++++++++++++----------- 1 file changed, 30 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index a809473..ef1a173 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2713,7 +2713,8 @@ "ansi-regex": { "version": "2.1.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "aproba": { "version": "1.2.0", @@ -2734,12 +2735,14 @@ "balanced-match": { "version": "1.0.0", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "brace-expansion": { "version": "1.1.11", "bundled": true, "dev": true, + "optional": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -2754,17 +2757,20 @@ "code-point-at": { "version": "1.1.0", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "concat-map": { "version": "0.0.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "console-control-strings": { "version": "1.1.0", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "core-util-is": { "version": "1.0.2", @@ -2881,7 +2887,8 @@ "inherits": { "version": "2.0.3", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "ini": { "version": "1.3.5", @@ -2893,6 +2900,7 @@ "version": "1.0.0", "bundled": true, "dev": true, + "optional": true, "requires": { "number-is-nan": "^1.0.0" } @@ -2907,6 +2915,7 @@ "version": "3.0.4", "bundled": true, "dev": true, + "optional": true, "requires": { "brace-expansion": "^1.1.7" } @@ -2914,12 +2923,14 @@ "minimist": { "version": "0.0.8", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "minipass": { "version": "2.3.5", "bundled": true, "dev": true, + "optional": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" @@ -2938,6 +2949,7 @@ "version": "0.5.1", "bundled": true, "dev": true, + "optional": true, "requires": { "minimist": "0.0.8" } @@ -3018,7 +3030,8 @@ "number-is-nan": { "version": "1.0.1", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "object-assign": { "version": "4.1.1", @@ -3030,6 +3043,7 @@ "version": "1.4.0", "bundled": true, "dev": true, + "optional": true, "requires": { "wrappy": "1" } @@ -3115,7 +3129,8 @@ "safe-buffer": { "version": "5.1.2", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "safer-buffer": { "version": "2.1.2", @@ -3151,6 +3166,7 @@ "version": "1.0.2", "bundled": true, "dev": true, + "optional": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -3170,6 +3186,7 @@ "version": "3.0.1", "bundled": true, "dev": true, + "optional": true, "requires": { "ansi-regex": "^2.0.0" } @@ -3213,12 +3230,14 @@ "wrappy": { "version": "1.0.2", "bundled": true, - "dev": true + "dev": true, + "optional": true }, "yallist": { "version": "3.0.3", "bundled": true, - "dev": true + "dev": true, + "optional": true } } }, From 6921fe0224dcbaff7d10ba0f309c84844520d059 Mon Sep 17 00:00:00 2001 From: Gandalf86 Date: Sun, 13 Oct 2019 10:42:52 +0000 Subject: [PATCH 3/8] Add build directory to gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 353b1de..a0a43b6 100644 --- a/.gitignore +++ b/.gitignore @@ -62,3 +62,5 @@ typings/ .DS_Store +# Static build directory +Evie From d4ca6d95572d6ddaa01e4c8f28f5976992478ef1 Mon Sep 17 00:00:00 2001 From: Gandalf86 Date: Sun, 13 Oct 2019 10:44:11 +0000 Subject: [PATCH 4/8] Fix meta tag for W3C compliance --- src/theme/auth.ejs | 5 ++--- src/theme/dashboard.ejs | 5 ++--- src/theme/index.ejs | 5 ++--- src/theme/page.ejs | 5 ++--- 4 files changed, 8 insertions(+), 12 deletions(-) diff --git a/src/theme/auth.ejs b/src/theme/auth.ejs index 402f98e..1851b64 100644 --- a/src/theme/auth.ejs +++ b/src/theme/auth.ejs @@ -1,8 +1,7 @@ - - + Authentication @Evie @@ -48,4 +47,4 @@ - \ No newline at end of file + diff --git a/src/theme/dashboard.ejs b/src/theme/dashboard.ejs index 7977d42..7291468 100644 --- a/src/theme/dashboard.ejs +++ b/src/theme/dashboard.ejs @@ -1,8 +1,7 @@ - - + Dashboard | Evie by unDraw @@ -48,4 +47,4 @@ - \ No newline at end of file + diff --git a/src/theme/index.ejs b/src/theme/index.ejs index bb3cd9f..12db322 100644 --- a/src/theme/index.ejs +++ b/src/theme/index.ejs @@ -1,8 +1,7 @@ - - + Evie by unDraw @@ -165,4 +164,4 @@ - \ No newline at end of file + diff --git a/src/theme/page.ejs b/src/theme/page.ejs index f3ee881..1cb7a1a 100644 --- a/src/theme/page.ejs +++ b/src/theme/page.ejs @@ -1,8 +1,7 @@ - - + Page | Evie by unDraw @@ -63,4 +62,4 @@ - \ No newline at end of file + From b66ac60f1af7cf94fdd2195464bef08f5988f4f5 Mon Sep 17 00:00:00 2001 From: Gandalf86 Date: Sun, 13 Oct 2019 10:50:21 +0000 Subject: [PATCH 5/8] Close open , fixed indentation --- src/theme/index.ejs | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/src/theme/index.ejs b/src/theme/index.ejs index 12db322..c794486 100644 --- a/src/theme/index.ejs +++ b/src/theme/index.ejs @@ -146,17 +146,18 @@ From 39903a290a96a181816c033bab0e6fe353ffb406 Mon Sep 17 00:00:00 2001 From: Gandalf86 Date: Sun, 13 Oct 2019 11:03:51 +0000 Subject: [PATCH 6/8] Add required "alt" fields to img elements --- src/theme/auth.ejs | 2 +- src/theme/index.ejs | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/theme/auth.ejs b/src/theme/auth.ejs index 1851b64..0b1cb60 100644 --- a/src/theme/auth.ejs +++ b/src/theme/auth.ejs @@ -27,7 +27,7 @@
- + Identity

Access your account

diff --git a/src/theme/index.ejs b/src/theme/index.ejs index c794486..50582b1 100644 --- a/src/theme/index.ejs +++ b/src/theme/index.ejs @@ -55,21 +55,21 @@
- + Programmers

Programmers

A landing page for your open source projects. Present your solution, easily create docs.

- + Designers

Designers

A website for your own freebies. Let the world download and use your artwork.

- + Makers

Makers

A great starting point for your web application. Focus on your idea and execution.

@@ -82,7 +82,7 @@
- + Natural styling

Natural styling with almost nothing to learn

@@ -95,7 +95,7 @@
- + Framework agnostic

Framework agnostic. Your front-end setup, your choice.

@@ -108,7 +108,7 @@
- + Ready for production

Ready for production or rapid prototyping

From 1eb62ddbe3114af2cc40a00a50518f8dded7a313 Mon Sep 17 00:00:00 2001 From: Gandalf86 Date: Sun, 13 Oct 2019 11:36:38 +0000 Subject: [PATCH 7/8] Remove ambiguous "autocomplete" field --- src/theme/auth.ejs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme/auth.ejs b/src/theme/auth.ejs index 0b1cb60..6f30126 100644 --- a/src/theme/auth.ejs +++ b/src/theme/auth.ejs @@ -32,7 +32,7 @@

Access your account

Fill in your email and password to proceed

-