Skip to content

Commit

Permalink
Update index.html, Add gulpfile.js, Add favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
krman009 committed Jul 7, 2014
1 parent 9349daf commit 0de1a91
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 23 deletions.
Binary file added favicon.ico
Binary file not shown.
21 changes: 21 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
var gulp = require('gulp'),
connect = require('gulp-connect');

gulp.task('connect', function() {
connect.server({
root: '.',
port: 9090,
livereload: true
});
});

gulp.task('html', function () {
gulp.src('*.html')
.pipe(connect.reload());
});

gulp.task('watch', function () {
gulp.watch(['*.html'], ['html']);
});

gulp.task('default', ['connect', 'watch']);
39 changes: 16 additions & 23 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
<!--
2014 by
. _..._
.'| .' '.
.' | . .-. .
< | __ | ' ' |
| | ____ .:--.'. | | | | _ _
| | \ .' / | \ | | | | | | ' / |
| |/ . `" __ | | | | | | .' | .' |
| /\ \ .'.''| | | | | | / | / |
| | \ \ / / | |_| | | || `'. |
' \ \ \ \ \._,\ '/| | | |' .'| '/
'------' '---'`--' `" '--' '--' `-' `--'
Daily-Task Template (I think similar to To-Do)
Used FlatUI colors. (http://flatuicolors.com/)
2014 by
___ ____ __ __
|_ ||_ _| [ | [ |
| |_/ / ,--. __ _ .--. | |--. ,--. | | _ __ ,--.
| __'. `'_\ :[ | | | ( (`\] | .-. | `'_\ : | | [ \ [ ]`'_\ :
_| | \ \_ // | |,| \_/ |, `'.'. | | | | // | |, | | \ '/ / // | |,
|____||____|\'-;__/'.__.'_/[\__) )[___]|__]\'-;__/[___][\_: / \'-;__/
\__.'
(Thanks to: http://patorjk.com/software/taag/#p=display&f=Varsity&t=Kaushalya)
(Twitter: https://twitter.com/kmandalwala)
-->
<!doctype html>
<html lang="en">
Expand All @@ -21,16 +22,8 @@
<meta name="author" content="Kaushalya Mandaliya">
<meta name="description" content="Daily-Task template...Made using html and css.">
<title>Daily Tasks</title>
<link rel="stylesheet" href="style.css" />
<script type="text/javascript">
/*
-----------------------------------------------------
Daily-Task Template (I think similar to to-do)
Used FlatUI colors.
2014 by Kaushalya Mandaliya -- @kmandalwala
-----------------------------------------------------
*/
</script>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" type="image/png" href="favicon.ico" />
</head>
<body>
<div class="data">
Expand Down

0 comments on commit 0de1a91

Please sign in to comment.