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.4KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <a href="/"><span wicket:id="siteName">[site name]</span></a> / <span wicket:id="repositoryName">[repository name]</span> <span wicket:id="pageName">[page name]</span>
  23. </div>
  24. <!-- page content -->
  25. <wicket:child />
  26. <!-- page footer -->
  27. <div class="page_footer">
  28. <div style="float:right">
  29. <a href="http://gitblit.com"><span wicket:id="gbVersion"></span></a>
  30. </div>
  31. <div wicket:id="userText">[user text]</div>
  32. </div>
  33. </body>
  34. </html>