forked from multi-tenant/grails-multi-tenant-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html.tmpl
57 lines (52 loc) · 1.5 KB
/
main.html.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>{{ page.title }} @ GitHub</title>
<style type="text/css">
body {
margin-top: 1.0em;
font-family: "Helvetica,Arial,FreeSans";
}
#container {
margin: 0 auto;
margin-left: 50px;
margin-right: 50px;
}
.propName { font-weight: bold; }
h1 { color: #00CC00; margin-bottom: 3px; }
td { padding: 2px 5px; }
</style>
</head>
<body>
<a href="${remoteUrl}"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
<div id="container">
<h1>{{ page.title }}</h1>
<table id="properties">
<tbody>
<tr>
<td class="propName">Version</td>
<td>${version}<td>
</tr>
<tr>
<td class="propName">Grails Version</td>
<td>${grailsVersion}</td>
</tr>
<tr>
<td class="propName">Author</td>
<td>${author}</td>
</tr>
</tbody>
</table>
<hr />
<h2>Documentation</h2>
<ul>
<li><a href="/grails-gwt/docs/manual/index.html">User guide</a></a>
<li><a href="/grails-gwt/docs/api/index.html">Java API</a></li>
<li><a href="/grails-gwt/docs/gapi/index.html">Groovy API</a></li>
</ul>
<hr />
<div>{{ content }}</div>
</body>
</html>