Don't like ads? PRO users don't see any ads ;-)
Guest

itemDetail.html

By: a guest on Sep 16th, 2012  |  syntax: None  |  size: 1.62 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8" />
  5.     <title>itemDetailPage</title>
  6.  
  7.     <!-- WinJS references -->
  8.     <link href="//Microsoft.WinJS.1.0/css/ui-dark.css" rel="stylesheet" />
  9.     <script src="//Microsoft.WinJS.1.0/js/base.js"></script>
  10.     <script src="//Microsoft.WinJS.1.0/js/ui.js"></script>
  11.  
  12.     <link href="/css/default.css" rel="stylesheet" />
  13.     <link href="/pages/itemDetail/itemDetail.css" rel="stylesheet" />
  14.     <script src="/js/data.js"></script>
  15.     <script src="/pages/itemDetail/itemDetail.js"></script>
  16. </head>
  17. <body>
  18.     <!-- The content that will be loaded and displayed. -->
  19.     <div class="itemdetailpage fragment">
  20.         <header aria-label="Header content" role="banner">
  21.             <button class="win-backbutton" aria-label="Back" disabled type="button"></button>
  22.             <h1 class="titlearea win-type-ellipsis">
  23.                 <span class="pagetitle"></span>
  24.             </h1>
  25.         </header>
  26.         <div class="content" aria-label="Main content" role="main">
  27.             <article>
  28.                 <div>
  29.                     <header id="head">
  30.                         <h2 class="item-title"></h2>
  31.                         <h4 class="item-subtitle"></h4>
  32.                     <img class="item-image" src="#" />
  33.                     </header>
  34.  
  35.                                         <div id="Description">
  36.                                         <h2 class="item-title">Description</h2>
  37.                     <div class="item-content"></div>
  38.                                         </div>
  39.  
  40.                                         <div id="reference">
  41.                                         <h2 class="item-title">References</h2>
  42.                
  43.                                         </div>
  44.  
  45.                 </div>
  46.             </article>
  47.         </div>
  48.     </div>
  49. </body>
  50. </html>