summaryrefslogtreecommitdiffstats
path: root/funcweb/funcweb/templates/master.html
blob: 51948fec99ef2d59ccf02701b515d948cf536329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:xi="http://www.w3.org/2001/XInclude"
  xmlns:py="http://genshi.edgewall.org/"
  py:strip="">
  <head py:match="head" py:attrs="select('@*')">
    <meta content="text/html; charset=UTF-8" http-equiv="content-type"
      py:replace="''" />
    <title py:content="'Funcweb'"></title>

    <link py:for="js in tg_js_head" py:strip="">${ET(js.display())}</link>
    <link py:for="css in tg_css" py:strip="">${ET(css.display())}</link>
    <script type="text/javascript" src="${tg.url('/funcweb/static/javascript/ajax.js')}" />
    <script type="text/javascript" src="${tg.url('/funcweb/static/javascript/utils.js')}" />


    <style type="text/css" media="screen">
      @import url("/funcweb/static/css/style.css");
  </style>
  <style type="text/css" media="screen">
      @import url("/funcweb/static/css/groupscss.css");
  </style>
  
  <link media="screen" href="/funcweb/static/css/expanding_form.css" type="text/css" rel="stylesheet"/>
  <script src="${tg.url('/funcweb/static/javascript/expanding_form.js')}" type="text/javascript"/>
  <script src="${tg.url('/funcweb/static/javascript/async_tools.js')}" type="text/javascript"/>
      
  
  </head>
  <body py:match="body" py:attrs="select('@*')">
    <div py:for="js in tg_js_bodytop" py:replace="ET(js.display())" />
    
    <div class="header" id="header"></div>
    <div class="underheader" id="underheader"></div>
    <div id="menudiv">
        <div class="navgation" id="navigaton">
            <span class="lines">|</span>
                <a href="/funcweb/" class="navlinks">Home</a>
            <span class="lines">|</span>
                <a href="/funcweb/display_async_results" class="navlinks">Async Results</a>
            <span class="lines">|</span>
                <a href="/funcweb/groups_main" class="navlinks">Group Management</a>
            <span class="lines">|</span>
        
        </div>
    </div>


    <div class="container" id="container">
        
                   
        <div class="globalerrorbig" id="globalerrorbig">
              <div class="globalerror" id="globalerror"></div>
        </div>
        <div py:replace="select('*|text()')" />
 

        <div class="footercontent" id="footercontent">
            <div class="footer" id="footer"></div>
        </div>
    
    </div>



  </body>
</html>