mirror of https://github.com/apache/lucene.git
27 lines
521 B
Plaintext
27 lines
521 B
Plaintext
|
<html>
|
||
|
<head>
|
||
|
#parse("head.vm")
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="header">
|
||
|
<a href="#url_for_home"><img src="#{url_root}/img/solr.svg" id="logo" title="Solr"/></a> Powered File Search
|
||
|
</div>
|
||
|
|
||
|
|
||
|
#if($response.response.error.code)
|
||
|
<div class="error">
|
||
|
<h1>ERROR $response.response.error.code</h1>
|
||
|
$response.response.error.msg
|
||
|
</div>
|
||
|
#else
|
||
|
<div id="content">
|
||
|
$content
|
||
|
</div>
|
||
|
#end
|
||
|
|
||
|
<div id="footer">
|
||
|
#parse("footer.vm")
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|