forked from pro-react/pro-react.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·105 lines (85 loc) · 3.04 KB
/
Copy pathindex.html
File metadata and controls
executable file
·105 lines (85 loc) · 3.04 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!--Page Title-->
<title>Pro React - Online Materials</title>
<!--Device Width Check-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
<!--Meta Keywords and Description-->
<meta name="keywords" content="">
<meta name="description" content="">
<!--Favicon-->
<link rel="shortcut icon" href="../images/favicon.ico" title="Favicon" />
<!--Fixes for Internet Explorer CSS3 and HTML5-->
<!--[if gte IE 9]>
<style type="text/css">
.gradient { filter: none!important;}
</style>
<![endif]-->
<!--[if lt IE 9]>
<script>
'article aside footer header nav section time'.replace(/\w+/g,function(n){document.createElement(n)})
</script>
<![endif]-->
<!--Main CSS-->
<link rel="stylesheet" href="../css/style.css" media="screen, projection">
<!--Icon Fonts-->
<link rel="stylesheet" href="../css/font-awesome.min.css">
<!--Google Webfonts-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,300,600' rel='stylesheet' type='text/css'>
</head>
<body class="content_page">
<header role="contentinfo">
<div id="page_header" class="row">
<!--Start of Header Logo-->
<div id="logo" class="two_thirds">
<h1><img src="../images/logo.png" alt="Pro React" title="Pro React book companion site" height="40" width="40"/>Pro React</h1>
<h2>The “Pro Level” React book</h2>
</div>
<!--End of Header Logo-->
<div id="page_menu" class="one_third last">
<ul>
<li><a href="../">About the Book</a></li> |
<li><strong>Online Materials</strong></li>
</ul>
</div>
</div>
</header>
<!--Start of Product Banner-->
<section id="banner" role="banner">
<div class="row">
</div>
</section>
<!--End of Product Banner-->
<!--Start of Main Content-->
<article role="main">
<div id="main_content" class="background_grey">
<section id="online_materials">
<div class="row">
<h1>Online Materials</h1>
<p></p>
<h2><a href="https://github.com/pro-react/">Book Source Code</a></h2>
<h2><a href="ch06-alt-redux.pdf" download>Alternative Chapter 6 (Using Redux instead of Flux) <small> PDF (Beta)</small></a></h2>
<h2>Appendix A: WebPack <small><a href="appendixA.pdf" download>PDF</a> | <a href="appendixA">Web</a></small></h2>
<h2><a href="appendixB.pdf" download>Appendix B: JavaScript ES2015 <small>PDF</small></a></h2>
<h2>Appendix C: Functional JavaScript <small>Coming soon</small></h2>
</div>
</section>
</div>
</article>
<!--End of Main Content-->
<!-- Included JS Files (Compressed) -->
<script src="../js/foundation.min.js"></script>
<script src="../js/phrases.js"></script>
<script src="../js/site.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-71895199-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>