100
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3 <html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/page">
|
|
4 <head>
|
|
5 <tal:block metal:fill-slot="head">
|
|
6 <tal:x define="global member here/getContent" />
|
|
7 </tal:block>
|
|
8 </head>
|
|
9 <body>
|
|
10 <div class="center" metal:fill-slot="center">
|
|
11 <h1>
|
|
12 <span tal:replace="member/title" /> <span tal:replace="python:here.decode(member.first_name)" /> <span
|
|
13 tal:replace="python:here.decode(member.last_name)" />
|
|
14 </h1>
|
|
15
|
|
16 <p>
|
|
17 <a tal:attributes="href python:here.getUrl(baseUrl=root+'/'+secmap['staff']+'/members')">main entry</a>
|
|
18 </p>
|
|
19
|
|
20 <h2>Talks and presentations</h2>
|
|
21
|
|
22 <table class="items shorter" tal:define="talks here/getTalks">
|
|
23 <tr tal:repeat="talk talks">
|
|
24 <td>
|
|
25 <span tal:content="talk/date" />
|
|
26 </td>
|
|
27 <td>
|
|
28 <a tal:attributes="href talk/link" tal:omit-tag="not:talk/link">
|
|
29 <span tal:content="talk/place" /> – <i tal:content="talk/title" />
|
|
30 </a>
|
|
31 </td>
|
|
32 </tr>
|
|
33 </table>
|
|
34 </div>
|
|
35 </body>
|
|
36 </html> |