1 <?cs include:"doctype.cs" ?> 2 <?cs include:"macros.cs" ?> 3 <html> 4 <?cs include:"head_tag.cs" ?> 5 <body class="gc-documentation"> 6 <?cs include:"header.cs" ?> 7 8 <div class="g-unit" id="doc-content"> 9 10 <div id="jd-header"> 11 <h1><?cs var:page.title ?></h1> 12 </div> 13 14 <div id="jd-content"> 15 16 <div class="jd-descr"> 17 <p><?cs call:tag_list(root.descr) ?></p> 18 </div> 19 20 <?cs set:count = #1 ?> 21 <table class="jd-sumtable"> 22 <?cs each:pkg = docs.packages ?> 23 <tr class="<?cs if:count % #2 ?>alt-color<?cs /if ?> api apilevel-<?cs var:pkg.since ?>" > 24 <td class="jd-linkcol"><?cs call:package_link(pkg) ?></td> 25 <td class="jd-descrcol" width="100%"><?cs call:tag_list(pkg.shortDescr) ?></td> 26 </tr> 27 <?cs set:count = count + #1 ?> 28 <?cs /each ?> 29 </table> 30 31 <?cs include:"footer.cs" ?> 32 </div><!-- end jd-content --> 33 </div> <!-- end doc-content --> 34 35 <?cs include:"trailer.cs" ?> 36 37 </body> 38 </html> 39