Init repo
This commit is contained in:
17
src/index.html
Normal file
17
src/index.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Gulp Starter Kit</title>
|
||||
<!-- build:css -->
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<!-- endbuild -->
|
||||
</head>
|
||||
<body>
|
||||
<h1>Gulp starter kit</h1>
|
||||
<!-- build:js -->
|
||||
<script src="js/plugins.js"></script>
|
||||
<script src="js/script.js"></script>
|
||||
<!-- endbuild -->
|
||||
</body>
|
||||
</html>
|
||||
1
src/js/plugins.js
Normal file
1
src/js/plugins.js
Normal file
@@ -0,0 +1 @@
|
||||
console.log('plugins');
|
||||
1
src/js/script.js
Normal file
1
src/js/script.js
Normal file
@@ -0,0 +1 @@
|
||||
console.log('script');
|
||||
1
src/scss/_settings.scss
Normal file
1
src/scss/_settings.scss
Normal file
@@ -0,0 +1 @@
|
||||
$color-bg: green;
|
||||
5
src/scss/style.scss
Normal file
5
src/scss/style.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
@import "settings";
|
||||
|
||||
body {
|
||||
background-color: $color-bg;
|
||||
}
|
||||
Reference in New Issue
Block a user