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">
|
|
11 <meta name="description" content="feature"/>
|
|
12 </metal:block>
|
84
|
13 </head>
|
|
14 <body>
|
|
15 <div class="center" metal:fill-slot="center">
|
|
16 <metal:block metal:define-slot="feature">
|
|
17 (the latest feature should be here)
|
|
18 </metal:block>
|
|
19 </div>
|
|
20 <!-- center -->
|
|
21
|
|
22 <div class="sidebar" metal:fill-slot="sidebar">
|
|
23
|
|
24 <tal:block metal:define-slot="sideblock" />
|
|
25
|
|
26 <div class="sideblock">
|
204
|
27 <h2 tal:condition="python:lang!='de'">Research Topics Archive</h2>
|
|
28 <h2 tal:condition="python:lang=='de'">Archiv der Forschungsthemen</h2>
|
84
|
29
|
|
30 <div class="item noline" tal:condition="python:lang!='de'">
|
204
|
31 <a class="internal" tal:attributes="href string:$root/${secmap/news}/featurearchive.html">In the archive</a>
|
|
32 you can find present and past research topics.
|
84
|
33 </div>
|
|
34 <div class="item noline" tal:condition="python:lang=='de'">
|
204
|
35 <a class="internal" tal:attributes="href string:$root/${secmap/news}/featurearchive.html">Im Archiv</a>
|
|
36 finden Sie aktuelle und frühere Forschungsthemen.
|
84
|
37 </div>
|
|
38
|
204
|
39 <tal:block define="features python:here.getFeatures(reverse=True)">
|
|
40 <div class="item thumb" tal:repeat="feature python:features">
|
|
41 <div class="row" tal:define="url python:feature.getUrl(baseUrl='%s/%s/features'%(root,secmap['news']))">
|
|
42 <div class="col thumb">
|
|
43 <a tal:attributes="href url"> <img tal:attributes="src feature/getThumbUrl" />
|
|
44 </a>
|
|
45 </div>
|
|
46 <div class="col text">
|
|
47 <a tal:attributes="href url"><b><span tal:replace="python:len(features)-features.index(feature)" />:</b></a>
|
|
48 <span tal:content="feature/getFullTitle" />
|
84
|
49 </div>
|
|
50 </div>
|
204
|
51 </div>
|
84
|
52 </tal:block>
|
|
53
|
|
54 </div>
|
|
55 <!-- /sideblock -->
|
|
56
|
|
57 </div>
|
|
58 <!-- sidebar -->
|
|
59 </body>
|
|
60 </html>
|
|
61 </metal:block> |