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