forked from diablouma/react_basic_app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.44 KB
/
Copy pathindex.html
File metadata and controls
37 lines (36 loc) · 1.44 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
<!-- bower:css -->
<link rel="stylesheet" href="bower_components/alloyeditor/dist/alloy-editor/assets/alloy-editor-ocean-min.css">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
<!-- endinject -->
<!-- bower:js -->
<script src="bower_components/react/react.js"></script>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/alloyeditor/dist/alloy-editor/alloy-editor-all-min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<!-- endinject -->
<!-- custom css -->
<link href="css/custom.css" rel="stylesheet">
<link rel="stylesheet" href="css/blog.css">
<!-- end custom css -->
</head>
<body>
<div id="menu"></div>
<div class="container">
<div class="blog-header">
<h1 class="blog-title">Amazing blog</h1>
<p class="lead blog-description">Share!</p>
</div>
<div id="all-posts"></div>
<div id="new-post"></div>
</div>
<script type="text/javascript" src="dist/components/menu.js"></script>
<script type="text/javascript" src="dist/components/post-form.js"></script>
<script type="text/javascript" src="dist/components/post.js"></script>
<script type="text/javascript" src="dist/components/all-posts.js"></script>
</body>
</html>