Mercurial > hg > MPIWGWeb
annotate zpt/staff/pubman/show_publications.zpt @ 140:f84f492f8e11
CLOSED - # 94: Profilseiten: Layout
https://it-dev.mpiwg-berlin.mpg.de/tracs/webpage/ticket/94
author | casties |
---|---|
date | Fri, 31 May 2013 17:55:58 +0200 |
parents | 9f45ed6ffeab |
children |
rev | line source |
---|---|
47 | 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"> | |
100 | 4 <head> |
5 <tal:block metal:fill-slot="head"> | |
6 </tal:block> | |
7 </head> | |
8 <body> | |
9 <div class="center" metal:fill-slot="center"> | |
47 | 10 |
100 | 11 <h1> |
140 | 12 <span tal:replace="options/member/title" /> |
13 <span tal:replace="options/member/first_name" /> | |
14 <span tal:replace="options/member/last_name" /> | |
100 | 15 </h1> |
16 | |
17 <p> | |
140 | 18 <a class="internal" tal:attributes="href string:$root/$section/members/${here/getId}">Main entry</a> |
100 | 19 </p> |
20 | |
140 | 21 <h1>Selected publications</h1> |
110
b554becd8226
Incomplete - # 74: More Link auf den pers?nlichne Homepages
dwinter
parents:
100
diff
changeset
|
22 |
100 | 23 <tal:block |
24 tal:define=" | |
110
b554becd8226
Incomplete - # 74: More Link auf den pers?nlichne Homepages
dwinter
parents:
100
diff
changeset
|
25 books python:here.getPublicationsFromPubman(publicationType='http://purl.org/eprint/type/Book',limit=15); |
b554becd8226
Incomplete - # 74: More Link auf den pers?nlichne Homepages
dwinter
parents:
100
diff
changeset
|
26 book_article python:here.getPublicationsFromPubman(publicationType='http://purl.org/eprint/type/BookItem',limit=15); |
b554becd8226
Incomplete - # 74: More Link auf den pers?nlichne Homepages
dwinter
parents:
100
diff
changeset
|
27 articles python:here.getPublicationsFromPubman(publicationType='http://purl.org/escidoc/metadata/ves/publication-types/article',limit=30); |
47 | 28 "> |
29 | |
100 | 30 <tal:block> |
140 | 31 <h2 class="line">Books</h2> |
100 | 32 <ul class="plain"> |
140 | 33 <li class="reference" tal:repeat="book books"> |
34 <span tal:replace="structure python:book[1]" /> | |
35 <a class="external" target="_blank" | |
36 tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+book[0]">More</a> | |
37 <span tal:condition="python:book[2] is not None"><a class="internal" tal:attributes="href python:'/en/resources/publications/'+here.getBookLinkFromID(book[2])">Book page</a></span> | |
38 <span tal:repeat="ident python:book[3]"><a class="external" tal:attributes="href ident">See also</a></span> | |
39 <span tal:repeat="ident python:book[4]"><a class="external" tal:attributes="href python:ident[1]" tal:content="python:ident[0]">See also</a></span> | |
100 | 40 </li> |
41 </ul> | |
47 | 42 </tal:block> |
43 | |
100 | 44 <tal:block> |
140 | 45 <h2 class="line">Book Chapters</h2> |
100 | 46 <ul class="plain"> |
140 | 47 <li class="reference" tal:repeat="book book_article"> |
48 <span tal:replace="structure python:book[1]" /> | |
49 <a class="external" target="_blank" tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+book[0]">More</a> | |
50 <span tal:repeat="ident python:book[3]"><a class="external" tal:attributes="href ident">See also</a></span> | |
51 <span tal:repeat="ident python:book[4]"><a class="external" tal:attributes="href python:ident[1]" tal:content="python:ident[0]">See also:</a></span> | |
100 | 52 </li> |
53 </ul> | |
54 </tal:block> | |
55 | |
56 <tal:block> | |
140 | 57 <h2 class="line">Articles</h2> |
100 | 58 <ul class="plain"> |
140 | 59 <li class="reference" tal:repeat="book articles"> |
60 <span tal:replace="structure python:book[1]" /> | |
61 <a class="external" target="_blank" tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+book[0]">More</a> | |
62 <span tal:repeat="ident python:book[3]"><a class="external" tal:attributes="href ident">See also</a></span> | |
63 <span tal:repeat="ident python:book[4]"><a class="external" tal:attributes="href python:ident[1]" tal:content="python:ident[0]">See also</a></span> | |
100 | 64 </li> |
65 </ul> | |
66 </tal:block> | |
67 | |
68 </tal:block> | |
69 | |
140 | 70 <p> |
71 <a class="external" target="_blank" tal:attributes="href python:options['member'].getConeId()">More publications on PubMan</a> | |
72 </p> | |
100 | 73 </div> |
110
b554becd8226
Incomplete - # 74: More Link auf den pers?nlichne Homepages
dwinter
parents:
100
diff
changeset
|
74 |
100 | 75 </body> |
47 | 76 </html> |