Skip to content
This repository has been archived by the owner on Sep 23, 2022. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
VadimCpp committed Sep 18, 2018
1 parent ff1d42f commit 7bdec83
Show file tree
Hide file tree
Showing 4 changed files with 5,555 additions and 0 deletions.
25 changes: 25 additions & 0 deletions gulpfile.js
@@ -0,0 +1,25 @@
var browserSync = require('browser-sync').create();
var gulp = require('gulp');

//
// Configure the browserSync task
//
gulp.task('browserSync', function() {
browserSync.init({
server: {
baseDir: './'
}
})
});



gulp.task('watch', function() {
gulp.watch('index.html', browserSync.reload);
// gulp.watch('css/**/*', browserSync.reload);
});


gulp.task('default', gulp.series('browserSync', 'watch', function() {
// default task code here
}));
19 changes: 19 additions & 0 deletions index.html
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<title>Календарь-калькулятор</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
</head>
<body>
<header class="container-fluid py-5 bg-dark text-white">
<h1 class="text-center">Календарь-калькулятор</h1>
</header>
<main class="container py-4">
TODO:
</main>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
</body>
</html>

0 comments on commit 7bdec83

Please sign in to comment.