source: indico/indico/MaKaC/webinterface/tpls/Footer.CERN.tpl @ c71c8b

burotelhello-world-walkthroughipv6new-webexprov-dual-interfacev0.97-seriesv0.98-seriesv0.98.2v0.98.3v0.98b1v0.98b2v0.99v1.0v1.1
Last change on this file since c71c8b was c71c8b, checked in by Pedro Ferreira <jose.pedro.ferreira@…>, 3 years ago

[IMP] Nicer Footer

  • fixes #37
  • also changed favicon;
  • Property mode set to 100644
File size: 1.7 KB
Line 
1<% import MaKaC.common.Configuration as Configuration %>
2<%!
3try:
4    dark
5except NameError:
6    dark = False;
7%>
8
9<!-- TODO: remove? -->
10<script type="text/javascript">
11function envoi(){
12        //alert('Le code de la langue choisie est '+document.forms["changeSesLang"].elements["lang"].value)
13        document.forms["changeSesLang"].submit()
14}
15</script>
16
17<!-- TODO: remove permanently? -->
18<% if isFrontPage: %>
19        <div id="policyOfUse">
20                <h1><%= _("Policy of Use")%></h1>
21                <%= _("If you want to use it for CERN-related projects, please contact")%> <a href="mailto:indico-support@cern.ch"> <%= _("Indico support")%></a><%= _(""".
22        Non-CERN institutes may install the Indico software locally under GNU General Public License
23        (see the""")%> <a href="http://cern.ch/indico"><%= _("project web site")%></a>).
24        </div>
25<% end %>
26
27<div id="poweredBy" class="footer<% if dark == True: %> footerDark<% end %>">
28
29<div style="margin-bottom: 15px; font-family: monospace; font-size: 10px;">
30  <% if shortURL != "" and not isFrontPage: %>
31  <div><%= shortURL %></div>
32  <% end %>
33
34  <% if modificationDate != "": %>
35  <div><%= _("Last modified: ") + modificationDate %></div>
36  <% end %>
37</div>
38
39            <a href="http://www.cern.ch">
40              <img src="<%= systemIcon("cern_small") %>" alt="<%= _("Indico - Integrated Digital Conference")%>" style="vertical-align: middle; margin-right: 12px;"/>
41            </a>
42            <span style="vertical-align: middle;"><%= _("Powered by ")%><a href="http://cdsware.cern.ch/indico/">CDS Indico</a></span>
43
44            <% if Configuration.Config.getInstance().getWorkerName()!="": %>
45                <span style="display: none;"><%= Configuration.Config.getInstance().getWorkerName() %></span>
46            <% end %>
47</div>
Note: See TracBrowser for help on using the repository browser.