-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.sample.html
169 lines (144 loc) · 5.2 KB
/
index.sample.html
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>VRaptor Scaffold</title>
<style type="text/css" media="screen">
/*reset.css*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/*main.css*/
body {
font-family: Arial, Helvetica, sans-serif;
}
h1 {
padding: 10px;
background: #7D44D6;
font-size: 3em;
color: #fff;
font-weight: bold;
}
h2 {
padding: 30px;
font-size: 2em;
color: #7D44D6;
}
h3 {
padding: 10px;
margin: 0 10px;
background: #956BD6;
color: #fff;
font-size: 1em;
font-weight: bold;
margin-bottom: 5px;
}
div {
padding: 10px;
margin: 0 10px;
color: #666;
line-height: 1.4em;
}
h3 img {
float: left;
margin: 0 5px 0 0;
}
div label {
font-weight: bold;
}
li {
list-style: inside;
}
div #footer {
position: absolute;
bottom: 0;
}
</style>
</head>
<body>
<h1>VRaptor Scaffold</h1>
<h2>VRaptor Scaffold project.</h2>
<div>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#vraptor">Vraptor 3</a></li>
<li><a href="#hibernate">Hibernate</a></li>
<li><a href="#hibernate-validator">Hibernate Validator</a></li>
<li><a href="#c3p0">C3P0</a></li>
<li><a href="#hsqldb">HSQLDB</a></li>
<li><a href="#sitemesh">SiteMesh</a></li>
<li><a href="#jsp">Jsp</a></li>
<li><a href="#freemarker">Freemarker</a></li>
<li><a href="#jodatime">Joda Time</a></li>
<li><a href="#jquery">jQuery</a></li>
<li><a href="#mockito">Mockito</a></li>
<li><a href="#junit">JUnit</a></li>
<li><a href="#hamcrest">Hamcrest</a></li>
</ul>
</div>
<h3><a id="about">About</a></h3>
<div>
<label>Source:</label> <a href="https://github.com/caelum/vraptor-scaffold" target="_blank">https://github.com/caelum/vraptor-scaffold</a><br />
<label>Issues:</label> <a href="https://github.com/caelum/vraptor-scaffold/issues" target="_blank">https://github.com/caelum/vraptor-scaffold/issues</a><br />
<label>Documentation (en):</label> <a href="http://vraptor.caelum.com.br/documentation/vraptor-scaffold/" target="_blank">http://vraptor.caelum.com.br/documentation/vraptor-scaffold</a><br />
<label>Documentation (pt):</label> <a href="http://vraptor.caelum.com.br/documentacao/vraptor-scaffold/" target="_blank">http://vraptor.caelum.com.br/documentacao/vraptor-scaffold</a>
</div>
<h3><a id="hibernate">Hibernate</a></h3>
<div>
<label>Version:</label> 3.6.2.Final<br/>
<label>Site:</label> <a href="http://www.hibernate.org" target="_blank">http://www.hibernate.org</a><br/>
<label>Info:</label>
An open source Java persistence framework project. Perform powerful object relational mapping and query databases
using HQL and SQL.
</div>
<h3><a id="jquery">jQuery</a></h3>
<div>
<label>Version:</label> 1.5.1<br/>
<label>Site:</label> <a href="http://jquery.com" target="_blank">http://jquery.com</a><br/>
<label>Info:</label>
jQuery is a fast and concise JavaScript Library that
simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development.
jQuery is designed to change the way that you write JavaScript.
</div>
<div id="footer">footer goes here</div>
</body>
</html>