-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] HTML: Add html partials and new checks
- Loading branch information
Showing
29 changed files
with
212 additions
and
520 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
## License | ||
# 🏝️ Marynah 🏝️ | ||
|
||
See [here](https://github.com/KonradRolof/DropLoad/blob/master/LICENSE) | ||
A simple GULP setup | ||
|
||
## Install | ||
## Installation | ||
|
||
Clone the repo into a folder, navigate into the folder and execute | ||
``` | ||
yarn install | ||
``` | ||
|
||
## Start | ||
## For development | ||
|
||
### For building all files | ||
yarn start | ||
|
||
### For developing | ||
This command generates all files, opens the page in the browser and watches for changes | ||
``` | ||
yarn dev | ||
``` | ||
|
||
## For building | ||
|
||
This command generates all files | ||
``` | ||
yarn start | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
* { | ||
color: red; | ||
.check-css-folder { | ||
color: green; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<h2>Checks</h2> | ||
<div class="check-css-folder"> | ||
<p>If this text is green, the css folder was loaded correctly.</p> | ||
</div> | ||
<div class="check-scss-folder"> | ||
<p>If this text is green, the scss folder was loaded correctly.</p> | ||
</div> | ||
<div class="check-js-folder"> | ||
<p>If this text is green, the js folder was loaded correctly.</p> | ||
</div> | ||
<div class="check-img-folder"> | ||
<p>Original Image</p> | ||
<img src="img/test.png" alt="The image was not loaded correctly or the image was not found."> | ||
<p>Minified Image</p> | ||
<img src="img/test_minified.png" alt="The minified image was not loaded correctly or the image was not found."> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<header> | ||
<h1>🏝️ Marynah 🏝️</h1> | ||
<p>A simple GULP setup</p> | ||
</header> |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,15 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>DropLoad</title> | ||
<title>Marynah</title> | ||
<link rel="stylesheet" href="css/app.css"> | ||
<link rel="stylesheet" href="css/style.css"> | ||
</head> | ||
<body> | ||
<header class="dld-header"> | ||
<div class="container"> | ||
<h1>DropLoad</h1> | ||
<p>Create a drop element for easy file upload.</p> | ||
<img src="img/screen.jpeg"> | ||
</div> | ||
</header> | ||
<main class="dld-main"> | ||
<div class="container"> | ||
<form action="#" method="post" class="dld-form" enctype="multipart/form-data"> | ||
<div class="dropload" id="dropLoadSingle"> | ||
<div class="dl-fallback"> | ||
<label for="file">Drop File to upload</label> | ||
<input type="file" id="file" accept="image/*"> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
</main> | ||
<script src="js/app.js"></script> | ||
<!-- partial:html/_hero.html --> | ||
<!-- partial --> | ||
<!-- partial:html/_checks.html --> | ||
<!-- partial --> | ||
<script src="js/app.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
document.write('Hello'); | ||
document.write('<style>.check-js-folder { color: green }</style>'); |
Oops, something went wrong.