initial boilerplate

This commit is contained in:
s2
2016-11-10 14:05:15 +01:00
commit 4315ee6c71
5 changed files with 35 additions and 0 deletions

2
README.md Normal file
View File

@@ -0,0 +1,2 @@
# Just a task list
read about it here: https://31337.it/Look-ma-no-framework/

1
css/app.css Normal file
View File

@@ -0,0 +1 @@

25
index.html Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script type="text/javascript" src="libs/jquery.min.js"></script>
<!--
It made life easier for many years, and it makes it really easy to change the dom and make ajax calls.
So let's include it in our html file. The latest browsers make jQuery almost useless, but it's still nice to
have it around for a lot of things for now.
-->
<link rel="stylesheet" href="css/app.css">
<!--
This file will be empty in the beginning, but since we know we will be using this let's add it now already.
-->
</head>
<body>
<script type="text/javascript" src="index.js"></script>
<!--
Our code goes here
-->
</body>
</html>

3
index.js Normal file
View File

@@ -0,0 +1,3 @@
(function($) {
//future code goes here
})()

4
libs/jquery.min.js vendored Normal file

File diff suppressed because one or more lines are too long