java/HrisniciSpameri/web/index.jsp
author František Kučera <franta-hg@frantovo.cz>
Thu Feb 12 10:17:30 2009 +0100 (2009-02-12)
changeset 12 2d8e8d9df773
parent 11 5b4ccb8b054a
child 13 850caaac1c42
permissions -rw-r--r--
Validní XHTML 1.0 Strict
This document was successfully checked as http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd!
     1 <%@page contentType="text/html" pageEncoding="UTF-8"%>
     2 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
     3 <!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     4 
     5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">
     6     <head>
     7         <meta http-equiv="content-language" content="cs"/>
     8         <meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8"/>
     9         <link href="styl.css" type="text/css" rel="StyleSheet"/>
    10         <script type="text/javascript" src="tridenitabulky.js"></script>
    11         <title>Hříšníci spameři</title>
    12     </head>
    13     <body>
    14         <h1>Hříšníci spameři</h1>
    15 
    16 
    17         <c:choose>
    18             <c:when test="${param.s == 'ucitele'}">
    19                 <jsp:include page="souhrn.jspx"/>
    20             </c:when>
    21             <c:when test="${param.s == 'komise'}">
    22                 <jsp:include page="souhrn.jspx"/>
    23             </c:when>
    24             <c:otherwise>
    25                 <jsp:include page="souhrn.jspx"/>
    26             </c:otherwise>
    27         </c:choose>
    28 
    29         <div id="licence">Program je vydán pod licencí: <a href="licence.txt">GNU Affero GPL</a>. A zdrojové kódy jsou ke stažení: <a href="HrisniciSpameri-src.zip">HrisniciSpameri-src.zip</a>.</div>
    30 
    31     </body>
    32 </html>