-
Notifications
You must be signed in to change notification settings - Fork 801
/
Copy pathchapter.html
34 lines (29 loc) · 1.34 KB
/
chapter.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
<!doctype html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><<t $in.title>> :: Eloquent JavaScript</title>
<link rel=stylesheet href="css/ejs.css">
<<if $in.page>>
<script>
var page = <<h JSON.stringify($in.page)>>
</script>
<</if>>
</head>
<article>
<nav>
<<if $in.prev_link>><a href="<<t $in.prev_link>>.html" title="previous chapter" aria-label="previous chapter">◂</a> <</if>>
<a href="index.html" title="cover" aria-label="cover">●</a>
<<if $in.next_link>> <a href="<<t $in.next_link>>.html" title="next chapter" aria-label="next chapter">▸</a><</if>>
<button class=help title="help" aria-label="help"><strong>?</strong></button>
</nav>
<h1<<if $in.id>> id="<<t $in.id>>"<</if>>><<if $in.chap_num>><span class=chap_num>Chapter <<t $in.chap_num>></span><</if>><<t $in.title>></h1>
<<h $in.content>>
<nav>
<<if $in.prev_link>><a href="<<t $in.prev_link>>.html" title="previous chapter" aria-label="previous chapter">◂</a> <</if>>
<a href="index.html" title="cover" aria-label="cover">●</a>
<<if $in.next_link>> <a href="<<t $in.next_link>>.html" title="next chapter" aria-label="next chapter">▸</a><</if>>
<button class=help title="help" aria-label="help"><strong>?</strong></button>
</nav>
</article>
<script src="ejs.js"></script>