84
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3 <metal:block metal:define-macro="page">
|
|
4 <html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/page">
|
|
5 <head>
|
|
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
136
|
7 <meta:block metal:fill-slot="title">
|
|
8 <title tal:content="here/getFullTitle"></title>
|
|
9 </meta:block>
|
90
|
10 <metal:block metal:fill-slot="head">
|
244
|
11 <meta name="description" content="feature"/>
|
|
12 <metal:block metal:define-slot="head"/>
|
90
|
13 </metal:block>
|
84
|
14 </head>
|
|
15 <body>
|
|
16 <div class="center" metal:fill-slot="center">
|
|
17 <metal:block metal:define-slot="feature">
|
|
18 (the latest feature should be here)
|
|
19 </metal:block>
|
|
20 </div>
|
|
21 <!-- center -->
|
|
22
|
|
23 <div class="sidebar" metal:fill-slot="sidebar">
|
|
24
|
|
25 <tal:block metal:define-slot="sideblock" />
|
|
26
|
|
27 <div class="sideblock">
|
204
|
28 <h2 tal:condition="python:lang!='de'">Research Topics Archive</h2>
|
|
29 <h2 tal:condition="python:lang=='de'">Archiv der Forschungsthemen</h2>
|
84
|
30
|
|
31 <div class="item noline" tal:condition="python:lang!='de'">
|
204
|
32 <a class="internal" tal:attributes="href string:$root/${secmap/news}/featurearchive.html">In the archive</a>
|
|
33 you can find present and past research topics.
|
84
|
34 </div>
|
|
35 <div class="item noline" tal:condition="python:lang=='de'">
|
204
|
36 <a class="internal" tal:attributes="href string:$root/${secmap/news}/featurearchive.html">Im Archiv</a>
|
|
37 finden Sie aktuelle und frühere Forschungsthemen.
|
84
|
38 </div>
|
|
39
|
204
|
40 <tal:block define="features python:here.getFeatures(reverse=True)">
|
|
41 <div class="item thumb" tal:repeat="feature python:features">
|
|
42 <div class="row" tal:define="url python:feature.getUrl(baseUrl='%s/%s/features'%(root,secmap['news']))">
|
|
43 <div class="col thumb">
|
|
44 <a tal:attributes="href url"> <img tal:attributes="src feature/getThumbUrl" />
|
|
45 </a>
|
|
46 </div>
|
|
47 <div class="col text">
|
|
48 <a tal:attributes="href url"><b><span tal:replace="python:len(features)-features.index(feature)" />:</b></a>
|
|
49 <span tal:content="feature/getFullTitle" />
|
84
|
50 </div>
|
|
51 </div>
|
204
|
52 </div>
|
84
|
53 </tal:block>
|
|
54
|
|
55 </div>
|
|
56 <!-- /sideblock -->
|
|
57
|
|
58 </div>
|
|
59 <!-- sidebar -->
|
|
60 </body>
|
|
61 </html>
|
244
|
62 </metal:block>
|