-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewPost.html
38 lines (29 loc) · 899 Bytes
/
newPost.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
<!DOCTYPE html>
<html>
<head>
<script src="https://fb.me/react-15.0.1.js"></script>
<script src="https://fb.me/react-dom-15.0.1.js"></script>
<link rel="stylesheet" href="css/materialize.css" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<meta charset="utf-8">
<script src="js/jquery-3.1.0.min.js" type="text/javascript"></script>
<title>Blog CMS - Posts</title>
</head>
<body>
<div class="row">
<div id="sideMenu" class="col s2"></div> <!-- Side Menu -->
<div id="content" class="m-p-zero col s10">
<div id="header" class="row">
<!-- Welcome Msg -->
<!-- Social Group -->
<!-- Social Icons-->
</div>
<div id="formNewPostBox" class="row">
</div>
</div>
</div>
<script src="mainJS.entry.js"></script>
<script src="newPostJS.entry.js"></script>
</body>
</html>