Init repo

This commit is contained in:
Bartlomiej Pluta (PGS Software)
2018-03-15 12:38:27 +01:00
commit a6d3cb5eb2
11 changed files with 8350 additions and 0 deletions

17
src/index.html Normal file
View 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
View File

@@ -0,0 +1 @@
console.log('plugins');

1
src/js/script.js Normal file
View File

@@ -0,0 +1 @@
console.log('script');

1
src/scss/_settings.scss Normal file
View File

@@ -0,0 +1 @@
$color-bg: green;

5
src/scss/style.scss Normal file
View File

@@ -0,0 +1,5 @@
@import "settings";
body {
background-color: $color-bg;
}