Skip to content

Commit 9507819

Browse files
committed
Exclude the dummy book from search engines
1 parent e6a8894 commit 9507819

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

first-edition/src/theme/index.hbs

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!DOCTYPE HTML>
2+
<html lang="{{ language }}" class="no-js">
3+
<head>
4+
<!-- Book generated using mdBook -->
5+
<meta charset="UTF-8">
6+
<title>Outdated link: {{ title }}</title>
7+
<meta name="robots" content="noindex,follow">
8+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
9+
10+
<base href="{{ path_to_root }}">
11+
12+
<link rel="stylesheet" href="book.css">
13+
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
14+
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css">
15+
16+
<link rel="stylesheet" href="highlight.css">
17+
<link rel="stylesheet" href="tomorrow-night.css">
18+
<link rel="stylesheet" href="ayu-highlight.css">
19+
20+
<!-- Custom theme stylesheets -->
21+
{{#each additional_css}}
22+
<link rel="stylesheet" href="{{this}}">
23+
{{/each}}
24+
</head>
25+
<body class="light">
26+
<div id="page-wrapper" class="page-wrapper">
27+
<div class="page">
28+
{{> header}}
29+
<div id="content" class="content">
30+
<main>
31+
{{{ content }}}
32+
</main>
33+
</div>
34+
</div>
35+
</div>
36+
</body>
37+
</html>

0 commit comments

Comments
 (0)