~statik/etherpad/trunk

« back to all changes in this revision

Viewing changes to etherpad/src/templates/html.ejs

  • Committer: Elliot Murphy
  • Date: 2009-12-19 01:40:46 UTC
  • Revision ID: elliot@elliotmurphy.com-20091219014046-7icbb6oxc29ccdn3
Copied over from zero-history mercurial repo.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<% /* Copyright 2009 Google Inc.
 
2
 
 
3
Licensed under the Apache License, Version 2.0 (the "License");
 
4
you may not use this file except in compliance with the License.
 
5
You may obtain a copy of the License at
 
6
 
 
7
     http://www.apache.org/licenses/LICENSE-2.0
 
8
 
 
9
Unless required by applicable law or agreed to in writing, software
 
10
distributed under the License is distributed on an "AS-IS" BASIS,
 
11
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
12
See the License for the specific language governing permissions and
 
13
limitations under the License. */ %><!DOCTYPE html PUBLIC
 
14
          "-//W3C//DTD XHTML 1.0 Transitional//EN"
 
15
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
16
 
 
17
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
 
18
  <head>
 
19
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
 
20
    <meta http-equiv="Content-Language" content="en-us" />
 
21
    <%= helpers.robotsMeta() %>
 
22
    <title><%= helpers.htmlTitle() %></title>
 
23
    <base href="<%= helpers.baseHref() %>" />
 
24
 
 
25
    <!-- CSS -->
 
26
    <%= helpers.cssIncludes() %>
 
27
 
 
28
    <%= helpers.headExtra() %>
 
29
 
 
30
  </head>
 
31
 
 
32
  <body id="<%= helpers.bodyId() %>" class="<%= helpers.bodyClasses() %>">
 
33
 
 
34
    <%= bodyHtml %>
 
35
 
 
36
<!-- javascript -->
 
37
 
 
38
<%= helpers.clientVarsScript() %>
 
39
<%= helpers.jsIncludes() %>
 
40
<%= helpers.googleAnalytics() %>
 
41
 
 
42
  </body>
 
43
</html>