Skip to content

Commit b79aa25

Browse files
committed
Fix html structure for examples index.html
1 parent 8a3afe8 commit b79aa25

File tree

1 file changed

+26
-21
lines changed

1 file changed

+26
-21
lines changed

examples/index.html

Lines changed: 26 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
<!doctype html>
2-
<title>React Router Examples</title>
3-
<link href="global.css" rel="stylesheet"/>
2+
<html>
3+
<head>
4+
<title>React Router Examples</title>
5+
<link href="global.css" rel="stylesheet"/>
6+
</head>
47
<body>
5-
<h1>React Router Examples</h1>
6-
<ul>
7-
<li><a href="active-links">Active Links</a></li>
8-
<li><a href="animations">Animations</a></li>
9-
<li><a href="auth-flow">Auth Flow</a></li>
10-
<li><a href="auth-with-shared-root">Auth with Shared Root</a></li>
11-
<li><a href="auth-flow-async-with-query-params">Async Auth with Query Parameters</a></li>
12-
<li><a href="breadcrumbs">Breadcrumbs</a></li>
13-
<li><a href="confirming-navigation">Confirming Navigation</a></li>
14-
<li><a href="dynamic-segments">Dynamic Segments</a></li>
15-
<li><a href="huge-apps">Huge Apps (Partial App Loading)</a></li>
16-
<li><a href="master-detail">Master Detail</a></li>
17-
<li><a href="nested-animations">Nested Animations</a></li>
18-
<li><a href="passing-props-to-children">Passing Props to Children</a></li>
19-
<li><a href="pinterest">Pinterest-style UI (<code>location.state</code>)</a></li>
20-
<li><a href="query-params">Query Params</a></li>
21-
<li><a href="route-no-match">Route Not Found</a></li>
22-
<li><a href="sidebar">Sidebar</a></li>
23-
</ul>
8+
<h1>React Router Examples</h1>
9+
<ul>
10+
<li><a href="active-links">Active Links</a></li>
11+
<li><a href="animations">Animations</a></li>
12+
<li><a href="auth-flow">Auth Flow</a></li>
13+
<li><a href="auth-with-shared-root">Auth with Shared Root</a></li>
14+
<li><a href="auth-flow-async-with-query-params">Async Auth with Query Parameters</a></li>
15+
<li><a href="breadcrumbs">Breadcrumbs</a></li>
16+
<li><a href="confirming-navigation">Confirming Navigation</a></li>
17+
<li><a href="dynamic-segments">Dynamic Segments</a></li>
18+
<li><a href="huge-apps">Huge Apps (Partial App Loading)</a></li>
19+
<li><a href="master-detail">Master Detail</a></li>
20+
<li><a href="nested-animations">Nested Animations</a></li>
21+
<li><a href="passing-props-to-children">Passing Props to Children</a></li>
22+
<li><a href="pinterest">Pinterest-style UI (<code>location.state</code>)</a></li>
23+
<li><a href="query-params">Query Params</a></li>
24+
<li><a href="route-no-match">Route Not Found</a></li>
25+
<li><a href="sidebar">Sidebar</a></li>
26+
</ul>
27+
</body>
28+
</html>

0 commit comments

Comments
 (0)