3
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3 <html metal:use-macro="here/main_template/macros/page">
|
|
4 <head>
|
|
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6 <metal:block metal:fill-slot="head">
|
|
7 <tal:x
|
|
8 tal:define="global member options/member; global key member/getKey;
|
|
9 global username member/getUsername; global content member/getContent;
|
73
|
10 global baseUrl string:$root/${secmap/staff}/members/$username" />
|
3
|
11 </metal:block>
|
|
12 </head>
|
|
13 <body>
|
|
14 <!-- center text -->
|
|
15 <div class="center" metal:fill-slot="center">
|
|
16 <div>
|
|
17 <!-- image -->
|
|
18 <tal:block tal:define="imgUrl member/getPublishedImageUrl" tal:condition="imgUrl">
|
|
19 <img tal:attributes="src python:'%s&dw=165'%imgUrl" style="float: left; margin-right: 22px;" />
|
|
20 </tal:block>
|
|
21 <!-- name and title -->
|
|
22 <h1>
|
|
23 <span tal:replace="content/first_name" /> <span tal:replace="content/last_name" />
|
|
24 </h1>
|
|
25 <!-- status -->
|
|
26 <h3 tal:content="content/status" />
|
|
27 <h3 tal:content="content/titles_new" />
|
|
28 <h3 tal:condition="content/funded_by">
|
|
29 Funded by the <span tal:replace="content/funded_by" />
|
|
30 </h3>
|
|
31 <p>
|
|
32 Residence: <span tal:replace="content/date_stay_at_mpiwg" />
|
|
33 </p>
|
|
34 </div>
|
|
35 <!-- profile -->
|
|
36 <div>
|
86
|
37 <tal:x tal:condition="not:content/profile">
|
|
38 <tal:y tal:replace="structure member/generateProfileForPerson" />
|
3
|
39 </tal:x>
|
|
40 <tal:x tal:condition="content/profile">
|
|
41 <h2>Profile</h2>
|
|
42 <tal:x tal:content="structure content/profile"> [FMP-Field: CV] </tal:x>
|
|
43 </tal:x>
|
|
44 </div>
|
|
45 <!-- publications -->
|
86
|
46 <tal:block
|
|
47 tal:define="publications python:here.ZDBInlineSearch(_table='publications',key_main=key,_op_key_main='eq',publish='yes',_op_publish='eq')"
|
3
|
48 tal:condition="publications">
|
|
49 <h2>Selected publications</h2>
|
56
|
50 <p tal:repeat="publication python:member.getPublicationsFromPubman(limit=5)">
|
47
|
51 <a tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+publication[0]"
|
|
52 tal:content="structure python:publication[1]" />
|
38
|
53 </p>
|
|
54 <p tal:condition="python:len(publications)>5">
|
86
|
55 <a class="internal" tal:attributes="href string:$baseUrl/publicationsFull">More</a>
|
3
|
56 </p>
|
46
|
57 <p>
|
86
|
58 <a class="external" target="_blank" tal:attributes="href member/getConeId">See all publications (PubMan)</a>
|
|
59 </p>
|
3
|
60 </tal:block>
|
|
61 <!-- Talks -->
|
86
|
62 <tal:block
|
|
63 tal:define="talks python:here.ZDBInlineSearch(_table='talks',key_main=key,_op_key_main='eq',_sort='priority',published='yes')"
|
3
|
64 tal:condition="talks">
|
|
65 <h2>Talks and presentations</h2>
|
|
66 <div class="namelist">
|
|
67 <tal:block tal:repeat="talk python:here.ZDBSlice(talks,size=5)">
|
|
68 <div class="name">
|
|
69 <a tal:omit-tag="not:talk/link" tal:attributes="href talk/link" tal:content="talk/date" />
|
|
70 </div>
|
|
71 <div class="definition">
|
|
72 <a tal:omit-tag="not:talk/link" tal:attributes="href talk/link"> <span tal:replace="talk/place" /> – <i><span
|
|
73 tal:replace="talk/title" /></i>
|
|
74 </a>
|
|
75 </div>
|
|
76 </tal:block>
|
|
77 </div>
|
|
78 <p tal:condition="python:len(talks)>5">
|
86
|
79 <a class="internal" tal:attributes="href string:$baseUrl/talks_full">More</a>
|
3
|
80 </p>
|
|
81 </tal:block>
|
|
82 <!-- Teaching activities -->
|
|
83 <tal:block tal:define="teachings python:here.ZDBInlineSearch(_table='teaching',key_main=key,_op_key_main='eq',_sort='priority')"
|
|
84 tal:condition="teachings">
|
|
85 <h2>Teaching activities</h2>
|
|
86 <div class="namelist">
|
|
87 <tal:block tal:repeat="teaching python:here.ZDBSlice(teachings, size=5)">
|
|
88 <div class="name">
|
|
89 <a tal:omit-tag="not:teaching/link" tal:attributes="href teaching/link"> <span tal:replace="teaching/date" />
|
|
90 </a>
|
|
91 </div>
|
|
92 <div class="definition">
|
|
93 <a tal:omit-tag="not:teaching/link" tal:attributes="href teaching/link"> <span tal:replace="teaching/place" />
|
|
94 – <i><span tal:replace="teaching/title" /></i>
|
|
95 </a>
|
|
96 </div>
|
|
97 </tal:block>
|
|
98 <p tal:condition="python:len(teachings)>5">
|
86
|
99 <a class="internal" tal:attributes="href string:$baseUrl/teaching_full">More</a>
|
3
|
100 </p>
|
|
101 </div>
|
|
102 </tal:block>
|
|
103 </div>
|
|
104 <!-- center -->
|
|
105
|
|
106
|
|
107 <!--sidebar content -->
|
|
108 <div class="sidebar" metal:fill-slot="sidebar">
|
|
109 <div class="sideblock">
|
|
110 <h2>Contact</h2>
|
|
111 <div class="item noline">
|
86
|
112 Max Planck Institute for the History of Science <br /> Boltzmannstraße 22 <br /> 14195 Berlin <br /> Germany
|
3
|
113 </div>
|
|
114 <div class="item" tal:condition="python:content.telefon_p=='yes'">
|
86
|
115 tel.: <span tal:content="content/telefon">[FMP-Field: telefon]</span> <br />
|
3
|
116 </div>
|
|
117 <div class="item" tal:condition="python:content.fax_p=='yes'">
|
86
|
118 fax: <span tal:content="content/fax">[FMP-Field: fax]</span> <br />
|
3
|
119 </div>
|
86
|
120 <div class="item" tal:condition="python:content.e_mail_p=='yes'">
|
|
121 <a class="email" tal:attributes="href string:mailto:${content/e_mail}" tal:content="content/e_mail">[FMP-Field:
|
3
|
122 e_mail]</a>
|
|
123 </div>
|
86
|
124 <div class="item" tal:condition="python:content.e_mail2_p=='yes'">
|
|
125 <a class="email" tal:attributes="href string:mailto:${content/e_mail2}" tal:content="content/e_mail2">[FMP-Field:
|
3
|
126 e_mail2]</a> (external)
|
|
127 </div>
|
|
128 </div>
|
|
129
|
86
|
130 <div class="sideblock" tal:define="projects python:here.getProjectFolder().getProjectsOfMember(key=key)"
|
|
131 tal:condition="projects">
|
3
|
132 <h2>Projects</h2>
|
40
|
133 <div class="project" tal:repeat="project projects">
|
|
134 <a tal:attributes="href python:project.getUrl(baseUrl=root+'/'+secmap['research']+'/projects/')"
|
86
|
135 tal:content="project/getLabel" />
|
3
|
136 </div>
|
|
137 </div>
|
|
138
|
|
139 <div class="sideblock">
|
|
140 <h2>Related Material</h2>
|
|
141 <div class="item download" tal:condition="python:getattr(here,'cv_publish','no')=='yes'">
|
|
142 <a target="_blank" href="downloadCV">Download Curriculum Vitae</a>
|
|
143 </div>
|
|
144 <div class="item download" tal:condition="python:getattr(here,'publications_publish','no')=='yes'">
|
86
|
145 <a target="_blank" href="downloadPublications">Download Publication List</a> <br />
|
3
|
146 </div>
|
86
|
147 <div class="item external">
|
|
148 <a target="_blank" tal:attributes="href python:member.getConeId()"> See publications on PubMan</a>
|
3
|
149 </div>
|
86
|
150 <div class="item external"
|
3
|
151 tal:repeat="addLink python:here.ZDBInlineSearch(_table='additionallink',key_main=key,_op_key_main='eq',_sort='priority',published='yes')">
|
|
152 <a target="_blank" tal:content="addLink/title" tal:attributes="href addLink/link"> Daston on the History of Science
|
|
153 (listen to CBC-Interview, Fall 2007)</a>
|
|
154 </div>
|
|
155 </div>
|
|
156 </div>
|
|
157 <!-- sidebar -->
|
|
158 </body>
|
|
159 </html> |