-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (37 loc) · 1.84 KB
/
index.html
File metadata and controls
43 lines (37 loc) · 1.84 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
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Medium baby</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="css/style.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.2/react.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.2/react-dom.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.14.0-alpha1/JSXTransformer.js"></script>
</head>
<body>
<div id="container" class="container pusher">
<div class="row">
<div class="col-md-offset-2"></div>
<div id="posts" class="col-md-6"></div>
<div id="featured-posts-snippets" class="col-md-2"></div>
<div class="col-md-offset-2"></div>
</div>
</div>
<script src="../components/Posts.jsx" type="text/jsx"></script>
<script src="../components/PostCard.jsx" type="text/jsx"></script>
<script src="../components/PostHeader.jsx" type="text/jsx"></script>
<script src="../components/PostTitle.jsx" type="text/jsx"></script>
<script src="../components/PostPicture.jsx" type="text/jsx"></script>
<script src="../components/PostContent.jsx" type="text/jsx"></script>
<script src="../components/PostSocial.jsx" type="text/jsx"></script>
<script src="../components/NewPostQuick.jsx" type="text/jsx"></script>
<!-- <script src="../components/MediumApp.jsx" type="text/jsx"></script> -->
<script type="text/jsx">
ReactDOM.render(<Posts />, document.getElementById('posts'));
</script>
<script>
</script>
</body>
</html>