-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (61 loc) · 1.54 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE HTML>
<html>
<head>
<!--
Author: Arthur Payne
Date: October 9, 2013
-->
<meta charset="UTF-8" />
<title>SimpleBlog</title>
<script src="js/modernizr-1.5.js">
</script>
<link href="css/SimpleBlogCSS.css" rel="stylesheet" type="text/css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
// Variables
// A list of post objects to be displayed in the Blog section
var postlist = new Array();
// Functions
// On Page Ready
$(function() {
// Load the top ten entries
});
// Load the entry at position
function loadEntry(entryNumber) {
};
// Login to the Blog
function login(username, password) {
};
// Set the Sidebar if the user is logged in
function setSidebar() {
};
// Post an Entry
function postEntry() {
};
// Edit an Entry
function editEntry(entryNumber) {
};
// Delete an Entry
function deleteEntry(entryNumber) {
};
</script>
</head>
<body>
<section id="Blog">
<article>
There are no entries in this blog right now.
</article>
<a href="#" id="newerBtn">Newer</a> <a href="#" id="olderBtn">Older</a>
</section>
<section id="Sidebar">
<div id="SidebarForm">
<form>
Username: <input type="text" name="username" /><br />
Password: <input type="text" name="password" /><br />
<input type="button" name="login" value="Login" />
</form>
</div>
</section>
</body>
</html>