summary refs log tree commit diff
path: root/views/layouts/main.tt
blob: 34b2e61d606d95c814eca6ce1fe7fa4bf4e00d89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>

  <head>
    <meta http-equiv="Content-type" content="text/html;charset=utf-8">
    <link rel="stylesheet" type="text/css" href="/css/style.css" media="all">
    <link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/themes/base/jquery-ui.css"> 

    <script type="text/javascript" src="<% request.base%>/javascripts/jquery.js"></script>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js"></script>

    <script type="text/javascript" src="<% request.base%>/javascripts/ballet.js"></script>

    <title><% title %></title>
  </head>

  <body>
    <% content %>
  </body>

</html>