source: products/quintagroup.quills.extras/branches/no_webresults/quintagroup/quills/extras/browser/topic_view.pt @ 1217

Last change on this file since 1217 was 1217, checked in by mylan, 15 years ago

Debug macroses refactoring, #37

File size: 1.2 KB
Line 
1<html xmlns="http://www.w3.org/1999/xhtml"
2      xml:lang="en-US"
3      lang="en-US"
4      metal:use-macro="here/main_template/macros/master"
5      xmlns:tal="http://xml.zope.org/namespaces/tal"
6      xmlns:i18n="http://xml.zope.org/namespaces/i18n"
7      i18n:domain="quills.app">
8
9  <body>
10    <div metal:fill-slot="main">
11
12      <h1 tal:content="context/getTitle"></h1>
13
14      <div id="topic-summary">
15        <img id="topic-image"
16             src=""
17             tal:condition="context/getImage"
18             tal:attributes="src python:context.getImage().absolute_url()" />
19        <span class="documentDescription"
20              tal:content="here/getDescription">
21        </span>
22      </div>
23
24      <div id="content-weblog">
25        <tal:dummy define="entries context/getEntries;
26                           batch_base_url request/ACTUAL_URL;
27                           weblog python: context.getWeblog();
28                           weblog_content python: context.getWeblogContentObject();
29                           wvconfig weblog_content/@@weblog_view/getConfig">
30        <metal:macro
31            use-macro="context/quills_weblog_macros/list-entries"/>
32        </tal:dummy>
33      </div>
34
35    </div>
36  </body>
37</html>
Note: See TracBrowser for help on using the repository browser.