blob: 3eff62da4d43010f2aac94edec4a9429572cee54 (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" >
<!-- contribute google-code-prettify resources to the page header -->
<wicket:head>
<wicket:link>
<link href="prettify/prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="prettify/prettify.js"></script>
</wicket:link>
</wicket:head>
<wicket:extend>
<!-- need to specify body.onload -->
<body onload="prettyPrint()">
<!-- page nav links -->
<div wicket:id="pageLinks">[page links]</div>
<!-- blob nav links -->
<div class="page_nav2">
<span wicket:id="historyLink">[history link]</span> | <span wicket:id="rawLink">[raw link]</span> | <span wicket:id="headLink">[head link]</span>
</div>
<!-- shortlog header -->
<div class="header" wicket:id="shortlog">[shortlog header]</div>
<!-- breadcrumbs -->
<div wicket:id="breadcrumbs">[breadcrumbs]</div>
<!-- blob content -->
<pre wicket:id="blobText">[blob content]</pre>
</body>
</wicket:extend>
</html>
|