1 | <html py:extends="ndgPage.kid,meta.kid" xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"> |
---|
2 | |
---|
3 | <head py:replace="pagehead(0)"/> |
---|
4 | <body> |
---|
5 | <div id="entirepage"> |
---|
6 | <div py:replace="header()"/> |
---|
7 | <div py:replace="PageTabs('Display')"/> |
---|
8 | <div py:replace="searchOneLine()"/> |
---|
9 | <!--! The if on the call to the left panel needs to be here for subtle css reasons |
---|
10 | <div py:if="'ndgSec' in session" py:replace="leftpanel()" id="Left"/> |
---|
11 | <?python |
---|
12 | id="contents" |
---|
13 | if "ndgSec" in session: id="contentsRight" |
---|
14 | ?> |
---|
15 | <div id="${id}">--> |
---|
16 | <div id="contents"> |
---|
17 | <div class="metadata"> |
---|
18 | <div class="headingblock"> |
---|
19 | <div id="title" class="heading">$c.doc.name</div> |
---|
20 | <div id="abstract">$c.doc.abstract</div> |
---|
21 | </div> |
---|
22 | <div py:replace="People('Creators',c.doc.creators)"/> |
---|
23 | <div py:replace="ParameterList(c.doc.parameters)"/> |
---|
24 | <div py:replace="Coverage(c.doc.bbox,c.doc.timeCoverage)"/> |
---|
25 | <div if="c.doc.sensors!=[]" py:replace="Keywords('Sensors',c.doc.sensors)"/> |
---|
26 | <div if="c.doc.sources!=[]" py:replace="Keywords('Sources',c.doc.sources)"/> |
---|
27 | <div py:replace="Centre(c.doc.centre)"/> |
---|
28 | <div py:replace="People('Personnel',c.doc.personnel)"/> |
---|
29 | <div py:replace="Services()"/> |
---|
30 | </div> |
---|
31 | </div> |
---|
32 | <center> |
---|
33 | <p>Not all information in this record may be rendered in this view. Please see the XML version for complete |
---|
34 | content </p> |
---|
35 | </center> |
---|
36 | <div py:replace="footer()"/> |
---|
37 | </div> |
---|
38 | |
---|
39 | |
---|
40 | |
---|
41 | </body> |
---|
42 | </html> |
---|