James Moger
2012-03-02 3f0677744e5b0195e3c23de9c5fd94924bfb592e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"  
      xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"  
      xml:lang="en"  
      lang="en"> 
<body onload="document.getElementById('fragment').focus();">
<wicket:extend>
    <div class="pageTitle">
        <h2><wicket:message key="gb.search"></wicket:message><small> lucene</small></h2>
    </div>
    <form class="form-inline" wicket:id="searchForm">
        <input class="span6" wicket:id="fragment" placeholder="enter search text"></input>
        <button class="btn btn-primary" type="submit" value="Search"><wicket:message key="gb.search"></wicket:message></button>
    </form>
    <div class="searchResult" wicket:id="searchResults">
        <div><i wicket:id="type"></i><span class="summary" wicket:id="summary"></span></div>
        <span class="author" wicket:id="author"></span> committed to <span class="repository" wicket:id="repository"></span>:<span class="branch" wicket:id="branch"></span><br/>
        <span class="date" wicket:id="date"></span>
    </div>
</wicket:extend>
</body>
</html>