UNPKG

1.63 kBtext/x-handlebars-templateView Raw
1<!DOCTYPE html>
2<html ng:app="FontThemeApp" ng:controller="FontThemCtrl">
3<head>
4 <meta charset="UTF-8"/>
5 <title>{{pkg.name}}</title>
6 <link rel="stylesheet" href="./assets/stylesheets/gallery.css"/>
7 <link rel="icon" href="./assets/images/fur-favicon.png"/>
8</head>
9<body>
10<header>
11 <div class="container">
12 <h1 onclick="location.reload()">{{pkg.name}}</h1>
13 </div>
14</header>
15<main>
16 <div class="container">
17 <table>
18 <colgroup>
19 <col style="width:90px;"/>
20 <col style="width:40px;"/>
21 <col/>
22 </colgroup>
23 <thead>
24 <tr>
25 <th>Theme</th>
26 <th>Reversed</th>
27 <th>Sample</th>
28 </tr>
29 <tbody>
30 {{#each examples}}
31 <tr>
32 <th>{{theme}}</th>
33 <td class="text-center">{{reversed}}</td>
34 <td>
35 <img src="./example/images/example-shape-{{theme}}.png?v={{../pkg.version}}" height="62">
36 </td>
37 </tr>
38 {{/each}}
39 </tbody>
40 </table>
41 </div>
42</main>
43<footer>
44 <a href="https://github.com/tick-tack/fur"><img src="./assets/images/fur-banner.png" class="footer-logo"></a>
45 <small>© 2014 Taka Okunishi</small>
46
47 <a id="jump-to-top-btn" href="#">⇧Jump to Top</a>
48 <nav>
49 <a class="nav-item" href="https://github.com/fur-repo/fur/">Homepage</a>
50 <a class="nav-item" href="http://fur-repo/fur/apiguide/">API Guide</a>
51 </nav>
52</footer>
53</body>
54</html>
\No newline at end of file