-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
84 lines (72 loc) · 2.86 KB
/
admin.php
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>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.ico">
<title>Vivify Academy Blog - Homepage</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body class="va-l-page va-l-page--admin">
<header class="va-l-site-header">
<a href="index.php" class="va-c-site-logo" title="VivifyAcademy blog">
Vivify<strong>blog</strong>
</a>
<nav class="va-c-site-nav">
<a href="index.php" title="Home">Home</a>
<a href="about.html" title="About">About</a>
<a href="contact.html" title="Contact">Contact</a>
<a href="admin.php" title="Admin">Admin</a>
</nav>
</header>
<div class="va-l-container">
<main class="va-l-page-content">
<table class="va-c-table va-c-post-list">
<thead>
<tr>
<th>Name</th>
<th>Options</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="#" title="#">Post title</a></td>
<td><a href="#" title="#">Edit</a> <a href="#" title="#">Delete</a></td>
</tr>
<tr>
<td><a href="#" title="#">Post title</a></td>
<td><a href="#" title="#">Edit</a> <a href="#" title="#">Delete</a></td>
</tr>
</tbody>
</table>
<header class="va-l-page-header">
<h1>Add new post</h1>
</header>
<div class="va-c-form va-c-new-post">
<div class="va-c-form-group">
<label class="va-c-control-label">Post title</label>
<input type="text" class="va-c-form-control">
</div>
<div class="va-c-form-group">
<label class="va-c-control-label">Post content</label>
<textarea rows="10" class="va-c-form-control"></textarea>
</div>
<div class="va-c-form-group">
<button class="va-c-btn va-c-btn--link">Cancel</button> or
<button class="va-c-btn va-c-btn--primary">Save</button>
</div>
</div>
</main>
</div>
<footer class="va-l-site-footer">
<p>Copyright © 2017.</p>
<nav>
<a href="index.php" title="Home">Home</a>
<a href="about.html" title="About">About</a>
<a href="contact.html" title="Contact">Contact</a>
<a href="admin.php" title="Admin">Admin</a>
</nav>
</footer>
</body>
</html>