~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/vostok/templates/root.pt

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-08-03 11:23:34 UTC
  • mfrom: (13457.6.16 upgrade-stderr)
  • Revision ID: launchpad@pqm.canonical.com-20110803112334-acnupsa7jmzmdeet
[r=stevenk][bug=819751] Fix the implementation of several methods in
 LoggingUIFactory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html
 
2
   xmlns="http://www.w3.org/1999/xhtml"
 
3
   xmlns:tal="http://xml.zope.org/namespaces/tal"
 
4
   xmlns:metal="http://xml.zope.org/namespaces/metal"
 
5
   xmlns:i18n="http://xml.zope.org/namespaces/i18n"
 
6
   metal:use-macro="view/macro:page/main_only"
 
7
   i18n:domain="vostok">
 
8
  <body>
 
9
    <tal:heading metal:fill-slot="heading">
 
10
      <h1>Vostok</h1>
 
11
    </tal:heading>
 
12
    <tal:content metal:fill-slot="main">
 
13
      <ul id="distro-list">
 
14
        <tal:loop tal:repeat="distro view/distributions">
 
15
          <li tal:content="structure distro/fmt:link" />
 
16
        </tal:loop>
 
17
      </ul>
 
18
    </tal:content>
 
19
  </body>
 
20
</html>