PageRenderTime 2ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/templates/genetrack/base.html

https://bitbucket.org/cistrome/cistrome-harvard/
HTML | 29 lines | 25 code | 4 blank | 0 comment | 0 complexity | 32acc205804438d316ba84f6a2ab7469 MD5 | raw file
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <title>${self.title()}</title>
  6. <link rel="stylesheet" href="${h.url_for('/static/genetrack/genetrack.css')}" type="text/css" media="screen">
  7. <script type="text/javascript" src="${h.url_for('/static/genetrack/genetrack.js')}">var dummy1=0;</script>
  8. </head>
  9. <%def name="title()">
  10. Title
  11. </%def>
  12. <%def name="footer()">
  13. <div align="center" id="footer">
  14. <a href="/">Home</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="${h.url_for(controller='genetrack',action='search',dataset_id=dataset_id)}">Search</a>
  15. </div>
  16. <div align="center" id="tag">
  17. Powered by <a href="http://genetrack.googlecode.com">GeneTrack</a> |
  18. <a href="http://atlas.bx.psu.edu/">Penn State Genome Cartography (2008)</a>
  19. </div>
  20. </%def>
  21. <body>
  22. ${self.body()}
  23. ${self.footer()}
  24. </body>
  25. </html>