-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (51 loc) · 2.86 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Blog</title>
<!-- Enable responsiveness on mobile devices-->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>Tutorial: Setting Up a Single Page React Web App with React-router and Webpack</title>
<meta name="description" content="" />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="assets/styles/bootstrap.min.css" charset="utf-8">
<link rel="stylesheet" href="assets/styles/animate.min.css" charset="utf-8">
<link rel="stylesheet" href="assets/styles/demo.css" charset="utf-8">
<link rel="stylesheet" href="assets/styles/material-kit.css" charset="utf-8">
<link rel="stylesheet" href="assets/styles/style.css" charset="utf-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"/>
<script src="assets/js/forms/ajquery/jquery.min.js"></script>
<!-- Meta -->
<meta property="og:site_name" content="sprogramacion.github.io" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Tutorial: Setting Up a Single Page React Web App with React-router and Webpack" />
<meta property="og:description" content="Note: this tutorial assumes React 0.13 and React-Router 0.13. Updates coming soon for the new versions There are many different ways of setting up a new project with React and Node.js. A Google search leads to a..." />
<meta property="article:published_time" content="2016-02-27T19:14:37.804Z" />
<meta property="article:modified_time" content="2016-09-21T15:39:06.058Z" />
</head>
<body class="landing-page">
<div id="container"></div>
<script src="public/build.js" charset="utf-8"></script>
<script src="assets/js/forms/bootstrap.min.js"></script>
<!--<script src="assets/js/dependencies/sails.io.js"></script>-->
<script src="assets/js/forms/demo.js"></script>
<script src="assets/js/forms/material-kit.js"></script>
<script src="assets/js/forms/material.min.js"></script>
<script src="assets/js/forms/moment-with-locales.min.js"></script>
<script type="text/javascript">
var header_height;
var fixed_section;
var floating = false;
$().ready(function() {
suggestions_distance = $("#suggestions").offset();
pay_height = $('.fixed-section').outerHeight();
$(window).on('scroll', materialKit.checkScrollForTransparentNavbar);
// the body of this function is in assets/material-kit.js
//materialKit.initSliders();
});
</script>
</body>
</html>