view zpt/staff/pubman/show_publications.zpt @ 100:f4ac675b2031

more members pages.
author casties
date Tue, 21 May 2013 18:50:05 +0200
parents a6ace48c2bf2
children b554becd8226
line wrap: on
line source

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
	  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/page">
<head>
<tal:block metal:fill-slot="head">
</tal:block>
</head>
<body>
  <div class="center" metal:fill-slot="center">

    <h1>
      <span tal:replace="python:options['member'].title" /> <span tal:replace="python:options['member'].first_name" /> <span
        tal:replace="python:options['member'].last_name" />
    </h1>

    <p>
      <a tal:attributes="href string:$root/$section/members/${here/getId}">main entry</a>
    </p>

    <h2>Selected publications</h2>
    <tal:block
      tal:define="
			     books python:here.getPublicationsFromPubman(publicationType='http://purl.org/eprint/type/Book');
			     book_article python:here.getPublicationsFromPubman(publicationType='http://purl.org/eprint/type/BookItem');
			     articles python:here.getPublicationsFromPubman(publicationType='http://purl.org/escidoc/metadata/ves/publication-types/article');
				">

      <tal:block>
        <h3>Books</h3>
        <ul class="plain">
          <li class="reference" tal:repeat="book books"><a tal:attributes="href python:''"><span
                tal:replace="structure python:book[1]" /> </a>
          </li>
        </ul>
      </tal:block>

      <tal:block>
        <h3>Book Chapters</h3>
        <ul class="plain">
          <li class="reference" tal:repeat="book book_article"><a tal:attributes="href python:''"><span
                tal:replace="structure python:book[1]" /></a>
          </li>
        </ul>
      </tal:block>

      <tal:block>
        <h3>Articles</h3>
        <ul class="plain">
          <li class="reference" tal:repeat="book articles"><a tal:attributes="href python:''"><span
                tal:replace="structure python:book[1]" /> </a>
          </li>
        </ul>
      </tal:block>

    </tal:block>

    <!--
        <p> 
	  <a href="/institutsbiblio/FMPro?-db=personal-www&amp;-max=1&amp;-Lay=ALL&amp;-format=search_inst_bib.html&amp;ID=[FMP-Field: ID]&amp;-Error=null.html&amp;-find" target="_new"> 
              search the institute's bibliography </a>
 -->

  </div>
</body>
</html>