Advertisement
Guest User

index.html

a guest
Mar 5th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5.  
  6. <title>Movies.com</title>
  7.  
  8.  
  9. <script type="text/template" id="movie-template">
  10. <h4 >{{title}}</h4>
  11. <p>
  12. <time >{{time}}</time>
  13. &nbsp;&nbsp;-&nbsp;&nbsp;
  14. <span >{{genre}}</span>
  15. </p>
  16. <div >{{plot}}</div>
  17. <div >
  18. <h5 >Director:</h5>
  19. <span >{{director}}</span>
  20. </div>
  21. </script>
  22.  
  23.  
  24. </head>
  25.  
  26. <body>
  27. <div id="navigation">
  28. <a href="#/home">Home</a>
  29. <a href="#/about">About</a>
  30. </div>
  31. <div id="content">
  32. </div><!--
  33. <div>
  34. <table>
  35. <tbody>
  36. <tr>
  37. <td>
  38. <img src="{{urlimg}}">
  39. </td>
  40. <td>
  41. <h4 >{{title}}</h4>
  42. <p>
  43. <time >{{time}}</time>
  44. &nbsp;&nbsp;-&nbsp;&nbsp;
  45. <span >{{genre}}</span>
  46. </p>
  47. <div >
  48. {{plot}}</div>
  49. <div >
  50. <h5 >Director:</h5>
  51. <span >{{director}}</span>
  52. </div>
  53. <div >
  54. <h5 >Stars:</h5>
  55. <span > {{stars}}</a></span>
  56. </div>
  57. </td>
  58. </tr>
  59. <tr>
  60. <td>
  61. <a href="/video/imdb/vi704556569?ref_=inth_ov_vi" itemprop="trailer"> Watch Trailer</a>
  62. </td>
  63. </tr>
  64. </tbody>
  65. </table>
  66. </div>
  67. -->
  68. </body>
  69. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement