[2] | 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 |
|
---|
| 10 | <%def name="title()">
|
---|
| 11 | Title
|
---|
| 12 | </%def>
|
---|
| 13 |
|
---|
| 14 | <%def name="footer()">
|
---|
| 15 | <div align="center" id="footer">
|
---|
| 16 | <a href="/">Home</a> | <a href="${h.url_for(controller='genetrack',action='search',dataset_id=dataset_id)}">Search</a>
|
---|
| 17 | </div>
|
---|
| 18 | <div align="center" id="tag">
|
---|
| 19 | Powered by <a href="http://genetrack.googlecode.com">GeneTrack</a> |
|
---|
| 20 | <a href="http://atlas.bx.psu.edu/">Penn State Genome Cartography (2008)</a>
|
---|
| 21 | </div>
|
---|
| 22 | </%def>
|
---|
| 23 |
|
---|
| 24 | <body>
|
---|
| 25 | ${self.body()}
|
---|
| 26 | ${self.footer()}
|
---|
| 27 | </body>
|
---|
| 28 |
|
---|
| 29 | </html>
|
---|