5772f39f26b53cefcf9cc4e51d0686ac7057efa5
[ratchet] / dist / template.html
1 <!DOCTYPE html>
2 <html>
3   <head>
4     <meta charset="utf-8">
5     <title>Ratchet template page</title>
6
7     <!-- Sets initial viewport load and disables zooming  -->
8     <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
9
10     <!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
11     <meta name="apple-mobile-web-app-capable" content="yes">
12     <meta name="apple-mobile-web-app-status-bar-style" content="black">
13     
14     <!-- Set a shorter title for iOS6 devices when saved to home screen -->
15     <meta name="apple-mobile-web-app-title" content="Ratchet">
16
17     <!-- Set Apple icons for when prototype is saved to home screen -->
18     <link rel="apple-touch-icon-precomposed" sizes="114x114" href="touch-icons/apple-touch-icon-114x114.png">
19     <link rel="apple-touch-icon-precomposed" sizes="72x72" href="touch-icons/apple-touch-icon-72x72.png">
20     <link rel="apple-touch-icon-precomposed" sizes="57x57" href="touch-icons/apple-touch-icon-57x57.png">
21
22     <!-- Include the compiled Ratchet CSS -->
23     <link rel="stylesheet" href="ratchet.css">
24
25     <!-- Include the compiled Ratchet JS -->
26     <script src="ratchet.js"></script>
27
28     <!-- Intro paragraph styles. Delete once you start using this page -->
29     <style type="text/css">
30         .welcome {
31           line-height: 1.5;
32           color: #555;
33         }
34     </style>
35
36   </head>
37   <body>
38
39   <!-- Make sure all your bars are the first things in your <body> -->
40   <header class="bar-title">
41     <h1 class="title">Ratchet</h1>
42   </header>
43
44   <!-- Wrap all non-bar HTML in the .content div (this is actually what scrolls) -->
45   <div class="content">
46     <div class="content-padded">
47       <p class="welcome">Thanks for downloading Ratchet. This is an example HTML page that's linked up to compiled Ratchet CSS and JS, has the proper meta tags and the HTML structure. Need some more help before you start filling this with your own content? Check out some Ratchet resorces:</p>
48     </div>
49
50     <ul class="list inset">
51       <li>
52         <a href="http://maker.github.com/ratchet/">
53           <strong>Ratchet documentation</strong>
54           <span class="chevron"></span>
55         </a>
56       </li>
57       <li>
58         <a href="http://www.github.com/maker/ratchet/">
59           <strong>Ratchet on Github</strong>
60           <span class="chevron"></span>
61         </a>
62       </li>
63       <li>
64         <a href="https://groups.google.com/forum/#!forum/goratchet">
65           <strong>Ratchet Google group</strong>
66           <span class="chevron"></span>
67         </a>
68       </li>
69       <li>
70         <a href="http://www.twitter.com/GoRatchet">
71           <strong>Ratchet on Twitter</strong>
72           <span class="chevron"></span>
73         </a>
74       </li>
75     </ul>
76
77   </div>
78
79   </body>
80 </html>