source: main/waeup.kofa/branches/uli-diazo-themed/src/waeup/kofa/browser/templates/studentsitelayout.pt @ 10976

Last change on this file since 10976 was 10976, checked in by Henrik Bettermann, 11 years ago

Remove footer.

File size: 4.3 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml" i18n:domain="waeup.kofa">
3  <head>
4    <title i18n:translate="">
5      WAeUP.Kofa - Student Management System
6    </title>
7    <!--base href="http://localhost:8080/app/@@page"
8     tal:attributes="href python: view.url(layout.site)" / -->
9    <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
10    <meta name="robots" content="index, follow" />
11    <link rel="stylesheet" media="only screen and (max-device-width: 480px)"
12        tal:attributes="href python: view.url(layout.site, '@@/waeup.kofa.browser/mobile.css')"
13        type="text/css" />
14    <link rel="alternate" type="application/rss+xml" title="RSS"
15        href="http://www.example.net/feed.rss"
16        tal:attributes="title string:RSS feed of ${layout/getAppTitle};
17            href python: view.url(layout.site, 'feed.rss')" />
18  </head>
19  <body class="page kofa-body">
20    <div class="topbar" data-scrollspy="scrollspy" >
21      <div class="topbar-inner">
22        <div  class="container">
23          <a class="kofa-brand-link" href="#"
24              tal:attributes="href python: view.url(layout.site)"
25              tal:content="layout/getAppAcronym">ACRONYM</a>
26          <ul class="nav kofa-navbar-left">
27              <tal:primary_nav content="structure provider:primary_nav" />
28              <tal:primary_nav content="structure provider:primary_nav_student" />
29          </ul>
30          <ul class="nav secondary-nav kofa-navbar-right">
31            <li tal:condition="not: layout/isAuthenticated">
32            <a href="#" i18n:translate=""
33               tal:attributes="href python: view.url(layout.site, 'login')">
34                Login
35            </a>
36            </li>
37            <li tal:condition="layout/isAuthenticated">
38            <a href="#" i18n:translate=""
39               tal:attributes="href python: view.url(layout.site, '@@contactadmin')">
40                Contact
41            </a>
42            </li>
43            <li tal:condition="layout/isAuthenticated">
44            <a href="#" i18n:translate=""
45               tal:attributes="href python: view.url(context, '@@logout')">
46               Logout
47            </a>
48            </li>
49          </ul>
50          <span class="language"
51                tal:define="langs provider:languages"
52                tal:condition="langs">
53            <tal:languages
54                  tal:content="structure langs" /> |
55          </span>
56        </div>
57      </div>
58    </div>
59
60    <div class="container">
61      <ul class="student-info-bar" tal:condition="layout/isAuthenticated">
62        <tal:breadcrumbs
63              tal:condition="python: layout.isAuthenticated()"
64              tal:content="structure provider:breadcrumbs" />
65        <span tal:condition="layout/getStudentName" class="wfstatus">
66            <span tal:replace="python:context.student.student_id">
67              Id
68            </span>
69            |
70            <span tal:replace="python:context.student.translated_state">
71              State
72            </span>
73        </span>
74      </ul>
75      <div class="kofa-content">
76        <div class="actionbar" tal:condition="provider:actionbar">
77          <tal:actionbar content="structure provider:actionbar" />&nbsp;
78        </div>
79        <div tal:define="message context/@@messages"
80             tal:condition="python: len(message)>11">
81          <div tal:content="structure message">
82          </div>
83        </div>
84        <div class="alert-message error"
85          tal:define="status view/status|nothing"
86          tal:condition="status">
87          <span tal:content="view/status">
88            FORM STATUS SUMMARY
89          </span>:
90          <ul id="alert-error" tal:condition="view/errors">
91            <li tal:repeat="error view/error_views">
92               <span tal:replace="structure error">Error Type</span>
93            </li>
94          </ul>
95        </div>
96        <div class="pull-right">
97          <a i18n:translate="" href="#footer">Back to bottom</a>
98        </div>
99        <h1 class="kofa-content-label"
100            tal:condition="view/label|nothing"
101            tal:content="structure view/label">Label</h1>
102        <div tal:content="structure view/content">
103          THE CONTENT
104        </div>
105      </div>
106    </div>
107  </body>
108</html>
Note: See TracBrowser for help on using the repository browser.