initial boilerplate
This commit is contained in:
2
README.md
Normal file
2
README.md
Normal 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
1
css/app.css
Normal file
@@ -0,0 +1 @@
|
|||||||
|
|
25
index.html
Normal file
25
index.html
Normal 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>
|
4
libs/jquery.min.js
vendored
Normal file
4
libs/jquery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user