-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfortune.html
28 lines (23 loc) · 828 Bytes
/
fortune.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="assets/css/style.css">
<link href="assets/img/icon16.png" rel="icon" sizes="16x16" type="image/png">
<title></title>
</head>
<body>
<div class="fortune">
<script id="quotes" type="text/x-handlebars-template">
<section>
<p class="quote">{{quote}}</p>
<p class="quote author" align="right">{{author}}</p>
</section>
</script>
</div>
<script src="assets/js/jquery.js"></script>
<script src="assets/js/handlebars.js"></script>
<script src="assets/js/quotes.precompiled.js"></script>
<script src="assets/js/quotes.js"></script>
</body>
</html>