root/WebContent/WEB-INF/resources/templates/includes/head.vm @ 1324:9d3e7c28d2c0

Revision 1324:9d3e7c28d2c0, 1.0 KB (checked in by Thomas Gambet <tgambet@…>, 3 years ago)

+ $unicorn_title and $unicorn_subtitle

Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="$lang" lang="$lang" dir="$direction">
3<head>
4        <title>$title</title>
5        <link rev="start" href="$!{baseUri}" title="Home Page" />
6#foreach( $sheet in $css )
7        <link href="$!{baseUri}style/$sheet" type="text/css" media="screen" rel="stylesheet" />
8#end
9#foreach( $script in $js )
10        <script type="text/javascript" src="$!{baseUri}scripts/$script"></script>
11#end
12        <link rev="made" href="mailto:www-validator@w3.org" />
13#if ($fav)
14        <link rel="icon" href="$!{baseUri}images/$fav" type="image/x-icon" />
15#else
16        <link rel="icon" href="$!{baseUri}images/favicon.ico" type="image/x-icon" />
17#end
18</head>
19<body class="$direction">
20        <div id="banner">
21                <h1>
22                        <a href="http://www.w3.org/"><img alt="W3C" width="110" height="61" id="logo" src="$!{baseUri}images/w3c.png" /></a>
23                        <a href="$!{baseUri}"><span>Unicorn - $unicorn_title</span></a>
24                </h1>
25                <p>$unicorn_subtitle</p>
26        </div>
Note: See TracBrowser for help on using the browser.