You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BasePage.html 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"
  4. xml:lang="en"
  5. lang="en">
  6. <!-- Head with Wicket-controlled resources in this package -->
  7. <wicket:head>
  8. <title wicket:id="title">[page title]</title>
  9. <wicket:link>
  10. <link rel="stylesheet" type="text/css" href="resources/gitblit.css"/>
  11. <link rel="shortcut icon" href="resources/gitblt-favicon.png" type="image/png" />
  12. </wicket:link>
  13. </wicket:head>
  14. <body>
  15. <!-- page header -->
  16. <div class="page_header">
  17. <a title="gitblit homepage" href="http://gitblit.com/">
  18. <wicket:link>
  19. <img src="resources/gitblt_25.png" width="79" height="25" alt="gitblit" class="logo"/>
  20. </wicket:link>
  21. </a>
  22. <span>
  23. <a href="/"><span wicket:id="siteName">[site name]</span></a> / <span wicket:id="repositoryName">[repository name]</span> <span wicket:id="pageName">[page name]</span>
  24. </span>
  25. </div>
  26. <!-- page content -->
  27. <wicket:child />
  28. <!-- page footer -->
  29. <div class="page_footer">
  30. <div style="float:right">
  31. <span wicket:id="gbVersion"></span>
  32. </div>
  33. <div wicket:id="userPanel">[user panel]</div>
  34. </div>
  35. </body>
  36. </html>