-
Notifications
You must be signed in to change notification settings - Fork 93
/
news.html
73 lines (67 loc) · 2.23 KB
/
news.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>Steal My Admin</title>
<link rel="stylesheet" href="css/960.css" type="text/css" media="screen" charset="utf-8" />
<!--<link rel="stylesheet" href="css/fluid.css" type="text/css" media="screen" charset="utf-8" />-->
<link rel="stylesheet" href="css/template.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="css/colour.css" type="text/css" media="screen" charset="utf-8" />
</head>
<body>
<h1 id="head">Steal My Admin Template</h1>
<ul id="navigation">
<li><span class="active">Overview</span></li>
<li><a href="#">News</a></li>
<li><a href="#">Users</a></li>
</ul>
<div id="content" class="container_16 clearfix">
<div class="grid_16">
<h2>Submit News Article</h2>
<p class="error">Something went wronk.</p>
</div>
<div class="grid_5">
<p>
<label for="title">Title <small>Must contain alpha-numeric characters.</small></label>
<input type="text" name="title" />
</p>
</div>
<div class="grid_5">
<p>
<label for="title">Slug <small>Must contain alpha-numeric characters.</small></label>
<input type="text" name="title" />
</p>
</div>
<div class="grid_6">
<p>
<label for="title">Category</label>
<select>
<option>Draft</option>
<option>Published</option>
<option>Private</option>
</select>
</p>
</div>
<div class="grid_16">
<p>
<label>Summary <small>Will be displayed in search engine results.</small></label>
<textarea></textarea>
</p>
</div>
<div class="grid_16">
<p>
<label>Article <small>Markdown Syntax.</small></label>
<textarea class="big"></textarea>
</p>
<p class="submit">
<input type="reset" value="Reset" />
<input type="submit" value="Post" />
</p>
</div>
</div>
<div id="foot">
<a href="#">Contact Me</a>
</div>
</body>
</html>