~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/macros.pt

  • Committer: Matt Nordhoff
  • Date: 2008-11-18 08:36:47 UTC
  • mto: This revision was merged to the branch mainline in revision 244.
  • Revision ID: mnordhoff@mattnordhoff.com-20081118083647-efhtxl3ckma6fj73
A variable was renamed, but you missed a spot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 
2
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
3
<html xmlns="http://www.w3.org/1999/xhtml" metal:define-macro="main">
 
4
  <head>
 
5
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
 
6
 
 
7
    <title metal:define-slot="title"></title>
 
8
    <link rel="stylesheet"
 
9
          tal:attributes="href python:branch.static_url('/static/css/global.css')" />
 
10
    <script type="text/javascript"
 
11
            tal:attributes="src python:branch.static_url('/static/javascript/mootools-1.2-core.js')"></script>
 
12
    <script type="text/javascript"
 
13
            tal:attributes="src python:branch.static_url('/static/javascript/mootools-1.2-more.js')"></script>
 
14
    <script type="text/javascript"
 
15
            tal:attributes="src python:branch.static_url('/static/javascript/custom.js')"></script>
 
16
      <script type="text/javascript">
 
17
          var global_path = <tal:block content="python:'\''+branch.url('/')+'\''" />;
 
18
      </script>
 
19
      <script type="text/javascript"
 
20
              tal:attributes="src
 
21
              python:branch.static_url('/static/javascript/yui/build/yui/yui-min.js')"></script>
 
22
    <metal:block metal:define-slot="header_extras" />
 
23
  </head>
 
24
 
 
25
<body>
 
26
    <!-- Loggerhead Content Area -->
 
27
      <div id="finderBox">
 
28
         <tal:search-box define="navigation navigation"
 
29
                        replace="structure python:search_box(branch,
 
30
                                 navigation)" />
 
31
        <div>
 
32
          <tal:feed-link replace="structure python:feed_link(branch, url)" />
 
33
        </div>
 
34
      </div>
 
35
 
 
36
      <tal:menu define="fileview_active fileview_active"
 
37
                replace="structure python:menu(branch, url, fileview_active)" />
 
38
      <div id="loggerheadCont">
 
39
 
 
40
        <div id="search_terms"></div>
 
41
 
 
42
        <h1 metal:define-slot="heading"></h1>
 
43
        <div metal:define-slot="content"></div>
 
44
 
 
45
        <p class="fl">Loggerhead is a web-based interface for <a href="http://bazaar-vcs.org/">Bazaar</a> branches</p>
 
46
      </div>
 
47
  </body>
 
48
</html>