source: trunk/root/templates/includes/header.tt @ 109

Last change on this file since 109 was 109, checked in by nanardon, 15 years ago
  • show current date (#19)
  • Property svn:keywords set to Id
File size: 1.0 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html>
3<head>
4<title>[% page.title %]</title>
5<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6<link rel="stylesheet" href="[% c.uri_for('/static', 'vote.css') %]" type="text/css">
7<link rel="icon" href="[%- c.uri_for('/static', 'images', 'favicon.ico') -%]" type="image/x-icon">
8
9<script language="JavaScript" src="[% c.uri_for('/static', 'js', 'CalendarPopup.js') %]"></SCRIPT>
10
11</head>
12<body>
13<div id="header">
14    <p id="title"><b>Epoll:</b> systÚme de vote en ligne</p>
15    <p id="now" style="float: right">Page générée le [% c.model('Vote').dbtime | html %]</p>
16    <p id="menu">
17    <a href="[% c.uri_for('/') %]">Liste des votes</a> ::
18    <a href="[% c.uri_for('/newpoll') %]">Créer un nouveau vote</a>
19    [% IF voteid %]
20    :: <a href="[% c.uri_for('/vote', voteid) %]">
21        Votre vote: [% c.model('Vote').vote_info(voteid).label | truncate(40) | html %]
22    </a>
23    [% END %]
24    </p>
25</div>
Note: See TracBrowser for help on using the repository browser.