/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to loggerhead/templates/macros.pt

  • Committer: Robey Pointer
  • Date: 2006-12-11 06:44:19 UTC
  • Revision ID: robey@lag.net-20061211064419-8ssa7mlsiflpmy0c
initial checkin

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
 
    <meta name="generator"
7
 
          tal:attributes="content generator_string" />
8
 
 
9
 
    <title metal:define-slot="title"></title>
10
 
    <link rel="stylesheet"
11
 
          tal:attributes="href python:branch.static_url('/static/css/global.css')" />
12
 
    <link rel="shortcut icon"
13
 
          tal:attributes="href python:branch.static_url('/static/images/favicon.png')" />
14
 
    <tal:comment condition="nothing">
15
 
      <script type="text/javascript"
16
 
              src="http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js"></script>
17
 
    </tal:comment>
18
 
    <script type="text/javascript">
19
 
      var global_path = <tal:block content="python:'\''+branch.url('/')+'\''" />;
20
 
      var collapsed_icon_path = <tal:block content="python:'\''+branch.static_url('/static/images/treeCollapsed.png')+'\''" />;
21
 
      var expanded_icon_path = <tal:block content="python:'\''+branch.static_url('/static/images/treeExpanded.png')+'\''" />;
22
 
    </script>
23
 
    <script type="text/javascript"
24
 
            tal:attributes="src python:branch.js_library_url('jquery.min.js')"></script>
25
 
    <script type="text/javascript"
26
 
            tal:attributes="src python:branch.static_url('/static/javascript/custom.js')"></script>
27
 
    <metal:block metal:define-slot="header_extras" />
28
 
  </head>
29
 
 
30
 
 <body tal:attributes="class python:branch.public_private_css()">
31
 
    <!-- Loggerhead Content Area -->
32
 
      
33
 
      <div metal:define-slot="backlink" />
34
 
      
35
 
      <h1 class="branch-name">
36
 
        <span metal:define-slot="branchname" />
37
 
      </h1>
38
 
      <tal:menu define="fileview_active fileview_active|False"
39
 
                replace="structure python:menu(branch, url, fileview_active)" />
40
 
      <div id="loggerheadCont">
41
 
 
42
 
        <div id="search_terms"></div>
43
 
        <div metal:define-slot="heading" />
44
 
        <div metal:define-slot="content"></div>
45
 
 
46
 
        <p id="footer" class="fl">
47
 
            Loggerhead is a web-based interface for <a href="https://www.breezy-vcs.org/">Breezy</a>
48
 
            <br />
49
 
            Version: <tal:version content="loggerhead_version" /><span tal:condition="loggerhead_revision">, Revision: <tal:revision content="loggerhead_revision" /></span>
50
 
        </p>
51
 
      </div>
52
 
  </body>
53
 
</html>