home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Calibre / calibre-0.8.18.msi / file_558 < prev    next >
Text File  |  2010-11-04  |  2KB  |  75 lines

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. ${head_content}$
  5.  
  6. <link href="${cssLink}$" type="text/css" rel="stylesheet" />
  7.  
  8. </head>
  9. <body>
  10.  
  11. <div class="calibreMeta">
  12.   <div class="calibreMetaTitle">
  13.   ${pos1=1}$
  14.   ${for title in meta.titles():}$
  15.     ${if pos1:}$
  16.     <h1>
  17.       <a href="${tocUrl}$">${print title}$</a>
  18.     </h1>
  19.     ${:else:}$
  20.     <div class="calibreMetaSubtitle">${print title}$</div>
  21.     ${:endif}$
  22.     ${pos1=0}$
  23.   ${:endfor}$
  24.   </div>
  25.   <div class="calibreMetaAuthor">
  26.     ${print ', '.join(meta.creators())}$
  27.   </div>
  28. </div>
  29.  
  30. <div class="calibreMain">
  31.  
  32.   <div class="calibreEbookContent">
  33.     ${if prevLink or nextLink:}$
  34.       <div class="calibreEbNavTop">
  35.         ${if prevLink:}$
  36.           <a href="${prevLink}$" class="calibreAPrev">${print _('previous page'),}$</a>
  37.         ${:else:}$
  38.           <a href="${tocUrl}$" class="calibreAPrev">${print _('previous page'),}$</a>
  39.         ${:endif}$
  40.  
  41.         ${if nextLink:}$
  42.           <a href="${nextLink}$" class="calibreANext">${print _('next page'),}$</a>
  43.         ${:endif}$
  44.       </div>
  45.     ${:endif}$
  46.  
  47.     ${ebookContent}$
  48.   </div>
  49.  
  50.   ${if has_toc:}$
  51.   <div class="calibreToc">
  52.     <h2><a href="${tocUrl}$">${print _('Table of contents'),}$</a></h2>
  53.     ${print toc()}$
  54.   </div>
  55.   ${:endif}$
  56.  
  57.   <div class="calibreEbNav">
  58.     ${if prevLink:}$
  59.       <a href="${prevLink}$" class="calibreAPrev">${print _('previous page'),}$</a>
  60.     ${:else:}$
  61.       <a href="${tocUrl}$" class="calibreAPrev">${print _('previous page'),}$</a>
  62.     ${:endif}$
  63.  
  64.     <a href="${tocUrl}$" class="calibreAHome">${print _('start'),}$</a>
  65.  
  66.     ${if nextLink:}$
  67.       <a href="${nextLink}$" class="calibreANext">${print _('next page'),}$</a>
  68.     ${:endif}$
  69.   </div>
  70.  
  71. </div>
  72.  
  73. </body>
  74. </html>
  75.