-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
82 lines (66 loc) · 3 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Book Club</title>
<link rel="stylesheet" href="style.css" type="text/css" media="screen">
<link rel="icon" type="image/x-icon" href="favicon.png">
<!-- script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js" type="text/javascript" charset="utf-8"></script -->
<script src="js/jquery-1.5.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery.scrollTo-1.4.2-min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/hyphenator.js" type="text/javascript" charset="utf-8"></script>
<script>
var bookScript = location.hash.indexOf('book2') !== -1 ? 'book2' : 'book';
document.write('<script src="js/' + bookScript + '.js" charset="utf-8"></' + 'script>');
</script>
</head>
<body>
<div id="preloader"></div>
<aside class="sans">
<a href="#">BookClub</a>
</aside>
<nav>
<ul>
<li><a href="javascript:void(0);" class="prev">↑</a></li>
<li><a href="javascript:void(0);" class="next">↓</a></li>
</ul>
</nav>
<section class="titlePage">
<div class="wrapper">
<div class="titleInfo">
<h1 class="titleText">Guts</h1>
<div class="author">by <a href="#" title="link to profile">Chuck Palahniuk</a></div>
</div>
</div>
</section>
<hr>
<script id="template" type="text/template">
<section class="page {pageClasses}">
<div class="wrapper">
<header class="clearfix">
<div class="title">{title} <span class="chapter">{chapter}</span></div>
<div class="pageCount">
<span class="author"><a href="#">{author}</a></span>
page <span class="pageNumber">{pageNumber}</span> of <span class="totalPages">{totalNumber}</span>
</div>
</header>
<article class="scrollWidth">
<div class="articleFlow" style="left: {offset}px">
{content}
</div>
</article>
</div>
</section>
<hr>
</script>
<section class="footer">
<div class="wrapper">
<div class="footerInfo">
<div class="about">
<p><em><a href="http://chuckpalahniuk.net/features/shorts/guts">Guts</a></em> is a short story written by <a href="http://chuckpalahniuk.net/">Chuck Palahniuk</a>. <em><a href="https://github.com/andychung/BookClub">BookClub</a></em> is an experiment in long form reading and typography in the browser by <a href="http://andychung.ca">Andy Chung</a> with the imperative help of <a href="http://tagneto.blogspot.com">James Burke</a>.</p>
<p>Cover image by <a href="http://en.wikipedia.org/wiki/David_Hockney">David Hockney</a>.</p>
</div>
</div>
</div>
</section>
</body>
</html>