278
|
1 <?xml version="1.0"?>
|
|
2 <feature xmlns:tal="http://xml.zope.org/namespaces/tal"
|
|
3 xmlns:metal="http://xml.zope.org/namespaces/metal">
|
279
|
4 <id tal:content="here/getId"/>
|
278
|
5 <title>
|
|
6 <en tal:content="python:here.getFullTitle(lang='en')"/>
|
|
7 <de tal:content="python:here.getFullTitle(lang='de')"/>
|
|
8 </title>
|
|
9 <author>
|
|
10 <name tal:content="here/author|nothing"/>
|
|
11 <id tal:content="here/author_id|nothing"/>
|
|
12 </author>
|
|
13 <date tal:content="python:here.getDateString(lang='iso')"/>
|
|
14 <sort-weight tal:content="here/weight|string:0"/>
|
|
15 <frontpage>
|
|
16 <image tal:content="here/getFrontpageImgUrl"/>
|
|
17 <teaser>
|
|
18 <en tal:content="python:getattr(here.en.get('teaser.pt'), 'source.html')(request, request.response)"/>
|
|
19 <de tal:content="python:getattr(here.de.get('teaser.pt'), 'source.html')(request, request.response)"/>
|
|
20 </teaser>
|
|
21 </frontpage>
|
|
22 <mainpage>
|
279
|
23 <image tal:content="here/img.jpg/absolute_url|nothing"/>
|
278
|
24 <main>
|
|
25 <en tal:content="python:getattr(here.en.get('main.pt'), 'source.html')(request, request.response)"/>
|
|
26 <de tal:content="python:getattr(here.de.get('main.pt'), 'source.html')(request, request.response)"/>
|
|
27 </main>
|
|
28 </mainpage>
|
|
29 </feature> |