/index.html

https://github.com/DjebbZ/Zepto-mobile · HTML · 82 lines · 72 code · 8 blank · 2 comment · 0 complexity · 3b7060485997ed7ee9476b0275a7b068 MD5 · raw file

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>ZEPTO MOBILE</title>
  5. <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
  6. <link href="css/style.css" media="screen" rel="stylesheet" type="text/css" />
  7. <link href="css/swipeslide.css" media="screen" rel="stylesheet" type="text/css" />
  8. <script type="text/javascript" src="js/iscroll.js"></script>
  9. <script type="text/javascript" src="js/zepto.js"></script>
  10. <script type="text/javascript" src="js/underscore.js"></script>
  11. <script type="text/javascript" src="js/backbone.js"></script>
  12. <script type="text/javascript" src="js/swipeslide.js"></script>
  13. <script type="text/javascript" src="js/ICanHaz.js"></script>
  14. <script type="text/javascript" src="js/script.js"></script>
  15. <!-- Template for Index Page -->
  16. <script type="text/html" id="indexView">
  17. <h2>SwipeSlide gallery</h2>
  18. <div id="slider">
  19. <div id="slider-content">
  20. <figure>
  21. <a href="#page2"><img src="img/amsterdam.jpg" />
  22. <figcaption>Amsterdam</figcaption></a>
  23. </figure>
  24. <figure>
  25. <img src="img/barpark.jpg" />
  26. <figcaption>Bar Park</figcaption>
  27. </figure>
  28. <figure>
  29. <img src="img/clody.jpg" />
  30. <figcaption>Clody</figcaption>
  31. </figure>
  32. <figure>
  33. <img src="img/gate.jpg" />
  34. <figcaption>Gate</figcaption>
  35. </figure>
  36. </div> <!-- end #slider-content -->
  37. </div> <!-- end #slider -->
  38. <h2>List view</h2>
  39. <div class="fieldset">
  40. <div class="field">
  41. <img src="img/icon.png" />
  42. <div class="left"><h3>Item title</h3><small>Item description</small></div>
  43. <div class="right"><span class="bubble-gray">5</span><br />Info</div>
  44. </div>
  45. <div class="field">
  46. <img src="img/icon.png" />
  47. <div class="left"><h3>Item title</h3><small>Item description</small></div>
  48. <div class="right"><span class="bubble-gray">2</span><br />Info</div>
  49. </div>
  50. <div class="field">
  51. <img src="img/icon.png" />
  52. <div class="left"><h3>Item title</h3><small>Item description</small></div>
  53. <div class="right"><span class="bubble-gray">3</span><br />Info</div>
  54. </div>
  55. </div> <!-- end .fieldset -->
  56. </script>
  57. <!-- Template for a dummy Page 2 -->
  58. <script type="text/html" id="page2View">
  59. <h2>Page 2</h2>
  60. <p>Fake content just for filling this page.</p>
  61. <p>Nor are the most conscientious compilations of Natural History for the benefit of the young and tender, free from the same heinousness of mistake. Look at that popular work "Goldsmith's Animated Nature." In the abridged London edition of 1807, there are plates of an alleged "whale" and a "narwhale." I do not wish to seem inelegant, but this unsightly whale looks much like an amputated sow; and, as for the narwhale, one glimpse at it is enough to amaze one, that in this nineteenth century such a hippogriff could be palmed for genuine upon any intelligent public of schoolboys.</p>
  62. <p>Then, again, in 1825, Bernard Germain, Count de Lacepede, a great naturalist, published a scientific systemized whale book, wherein are several pictures of the different species of the Leviathan. All these are not only incorrect, but the picture of the Mysticetus or Greenland whale (that is to say, the Right whale), even Scoresby, a long experienced man as touching that species, declares not to have its counterpart in nature.</p>
  63. </script>
  64. </head>
  65. <body>
  66. <div id="header">
  67. <h1>ZEPTO MOBILE</h1>
  68. </div>
  69. <div id="wrapper">
  70. <div id="scroller">
  71. </div> <!-- end #scroller -->
  72. </div> <!-- end #wrapper -->
  73. </body>
  74. </html>