-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html.ejs
More file actions
43 lines (36 loc) · 1.91 KB
/
Copy pathindex.html.ejs
File metadata and controls
43 lines (36 loc) · 1.91 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 public "beach">
<html lang="en">
<head>
<meta charset="utf-8">
<base href="<%= webpackConfig.output.publicPath %>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>React Router: Declarative Routing for React.js</title>
<link rel="apple-touch-icon" sizes="180x180" href="<%= webpackConfig.output.publicPath %>apple-touch-icon.png">
<link rel="icon" type="image/png" href="<%= webpackConfig.output.publicPath %>favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="<%= webpackConfig.output.publicPath %>favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="<%= webpackConfig.output.publicPath %>manifest.json">
<link rel="mask-icon" href="<%= webpackConfig.output.publicPath %>safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<meta property="og:image" content="https://reactrouter.com/react-square.png">
<meta property="og:site_name" content="ReactRouterWebsite">
<meta content="object" property="og:type" />
<meta property="og:title" content="React Router: Declarative Routing for React">
<meta property="og:url" content="https://reactrouter.com">
<meta content="Learn once, Route Anywhere" property="og:description" />
<style>
html, body, #app { height: 100%; margin: 0 }
*, *:before, *:after { box-sizing: border-box; }
</style>
</head>
<body>
<div id="app"></div>
<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-61180343-1', 'auto', 'routerSite');
ga('routerSite.send', 'pageview');
</script>
</body>
</html>