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>
|
100
|
37
|
3
|
38 <!-- profile -->
|
|
39 <div>
|
86
|
40 <tal:x tal:condition="not:content/profile">
|
|
41 <tal:y tal:replace="structure member/generateProfileForPerson" />
|
3
|
42 </tal:x>
|
|
43 <tal:x tal:condition="content/profile">
|
|
44 <h2>Profile</h2>
|
100
|
45 <div class="profile" tal:content="structure content/profile"> [FMP-Field: CV] </div>
|
3
|
46 </tal:x>
|
|
47 </div>
|
100
|
48
|
3
|
49 <!-- publications -->
|
86
|
50 <tal:block
|
|
51 tal:define="publications python:here.ZDBInlineSearch(_table='publications',key_main=key,_op_key_main='eq',publish='yes',_op_publish='eq')"
|
3
|
52 tal:condition="publications">
|
|
53 <h2>Selected publications</h2>
|
100
|
54 <p class="reference" tal:repeat="publication python:member.getPublicationsFromPubman(limit=5)">
|
47
|
55 <a tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+publication[0]"
|
|
56 tal:content="structure python:publication[1]" />
|
38
|
57 </p>
|
|
58 <p tal:condition="python:len(publications)>5">
|
100
|
59 <a class="internal" tal:attributes="href string:$baseUrl/publications_full_html">More</a>
|
3
|
60 </p>
|
100
|
61 <!-- <p>
|
86
|
62 <a class="external" target="_blank" tal:attributes="href member/getConeId">See all publications (PubMan)</a>
|
100
|
63 </p> -->
|
3
|
64 </tal:block>
|
100
|
65
|
3
|
66 <!-- Talks -->
|
100
|
67 <tal:block tal:define="talks member/getTalks" tal:condition="talks">
|
3
|
68 <h2>Talks and presentations</h2>
|
100
|
69 <table class="items shorter">
|
|
70 <tr tal:repeat="talk python:here.ZDBSlice(talks,size=5)">
|
|
71 <td>
|
3
|
72 <a tal:omit-tag="not:talk/link" tal:attributes="href talk/link" tal:content="talk/date" />
|
100
|
73 </td>
|
|
74 <td>
|
3
|
75 <a tal:omit-tag="not:talk/link" tal:attributes="href talk/link"> <span tal:replace="talk/place" /> – <i><span
|
|
76 tal:replace="talk/title" /></i>
|
|
77 </a>
|
100
|
78 </td>
|
|
79 </tr>
|
|
80 </table>
|
3
|
81 <p tal:condition="python:len(talks)>5">
|
100
|
82 <a class="internal" tal:attributes="href string:$baseUrl/talks_full_html">More</a>
|
3
|
83 </p>
|
|
84 </tal:block>
|
100
|
85
|
3
|
86 <!-- Teaching activities -->
|
100
|
87 <tal:block tal:define="teachings member/getTeaching" tal:condition="teachings">
|
3
|
88 <h2>Teaching activities</h2>
|
100
|
89 <table class="items shorter">
|
|
90 <tr tal:repeat="teaching python:here.ZDBSlice(teachings, size=5)">
|
|
91 <td>
|
3
|
92 <a tal:omit-tag="not:teaching/link" tal:attributes="href teaching/link"> <span tal:replace="teaching/date" />
|
|
93 </a>
|
100
|
94 </td>
|
|
95 <td>
|
3
|
96 <a tal:omit-tag="not:teaching/link" tal:attributes="href teaching/link"> <span tal:replace="teaching/place" />
|
|
97 – <i><span tal:replace="teaching/title" /></i>
|
|
98 </a>
|
100
|
99 </td>
|
|
100 </tr>
|
|
101 </table>
|
|
102 <p tal:condition="python:len(teachings)>5">
|
|
103 <a class="internal" tal:attributes="href string:$baseUrl/teaching_full_html">More</a>
|
|
104 </p>
|
3
|
105 </tal:block>
|
100
|
106
|
|
107 </div><!-- /center -->
|
3
|
108
|
|
109
|
|
110 <!--sidebar content -->
|
|
111 <div class="sidebar" metal:fill-slot="sidebar">
|
|
112 <div class="sideblock">
|
|
113 <h2>Contact</h2>
|
|
114 <div class="item noline">
|
86
|
115 Max Planck Institute for the History of Science <br /> Boltzmannstraße 22 <br /> 14195 Berlin <br /> Germany
|
3
|
116 </div>
|
|
117 <div class="item" tal:condition="python:content.telefon_p=='yes'">
|
86
|
118 tel.: <span tal:content="content/telefon">[FMP-Field: telefon]</span> <br />
|
3
|
119 </div>
|
|
120 <div class="item" tal:condition="python:content.fax_p=='yes'">
|
86
|
121 fax: <span tal:content="content/fax">[FMP-Field: fax]</span> <br />
|
3
|
122 </div>
|
86
|
123 <div class="item" tal:condition="python:content.e_mail_p=='yes'">
|
|
124 <a class="email" tal:attributes="href string:mailto:${content/e_mail}" tal:content="content/e_mail">[FMP-Field:
|
3
|
125 e_mail]</a>
|
|
126 </div>
|
86
|
127 <div class="item" tal:condition="python:content.e_mail2_p=='yes'">
|
|
128 <a class="email" tal:attributes="href string:mailto:${content/e_mail2}" tal:content="content/e_mail2">[FMP-Field:
|
3
|
129 e_mail2]</a> (external)
|
|
130 </div>
|
|
131 </div>
|
|
132
|
86
|
133 <div class="sideblock" tal:define="projects python:here.getProjectFolder().getProjectsOfMember(key=key)"
|
|
134 tal:condition="projects">
|
3
|
135 <h2>Projects</h2>
|
40
|
136 <div class="project" tal:repeat="project projects">
|
|
137 <a tal:attributes="href python:project.getUrl(baseUrl=root+'/'+secmap['research']+'/projects/')"
|
86
|
138 tal:content="project/getLabel" />
|
3
|
139 </div>
|
|
140 </div>
|
|
141
|
|
142 <div class="sideblock">
|
|
143 <h2>Related Material</h2>
|
|
144 <div class="item download" tal:condition="python:getattr(here,'cv_publish','no')=='yes'">
|
|
145 <a target="_blank" href="downloadCV">Download Curriculum Vitae</a>
|
|
146 </div>
|
|
147 <div class="item download" tal:condition="python:getattr(here,'publications_publish','no')=='yes'">
|
86
|
148 <a target="_blank" href="downloadPublications">Download Publication List</a> <br />
|
3
|
149 </div>
|
86
|
150 <div class="item external">
|
|
151 <a target="_blank" tal:attributes="href python:member.getConeId()"> See publications on PubMan</a>
|
3
|
152 </div>
|
86
|
153 <div class="item external"
|
3
|
154 tal:repeat="addLink python:here.ZDBInlineSearch(_table='additionallink',key_main=key,_op_key_main='eq',_sort='priority',published='yes')">
|
|
155 <a target="_blank" tal:content="addLink/title" tal:attributes="href addLink/link"> Daston on the History of Science
|
|
156 (listen to CBC-Interview, Fall 2007)</a>
|
|
157 </div>
|
|
158 </div>
|
|
159 </div>
|
|
160 <!-- sidebar -->
|
|
161 </body>
|
|
162 </html> |