mirror of https://github.com/perkeep/perkeep.git
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<html>
|
|
<head>
|
|
<title>Search</title>
|
|
<script src="closure/goog/base.js"></script>
|
|
<script src="./deps.js"></script>
|
|
<script src="?camli.mode=config&var=CAMLISTORE_CONFIG"></script>
|
|
<!-- Begin non-Closure cheating; but depended on by server_connection.js -->
|
|
<script type="text/javascript" src="base64.js"></script>
|
|
<script type="text/javascript" src="Crypto.js"></script>
|
|
<script type="text/javascript" src="SHA1.js"></script>
|
|
<!-- End non-Closure cheating -->
|
|
<script>
|
|
goog.require('camlistore.SearchPage');
|
|
</script>
|
|
<link rel="stylesheet" href="blob_item.css" type="text/css">
|
|
<link rel="stylesheet" href="blob_item_container.css" type="text/css">
|
|
<link rel="stylesheet" href="create_item.css" type="text/css">
|
|
<link rel="stylesheet" href="index.css" type="text/css">
|
|
<link rel="stylesheet" href="toolbar.css" type="text/css">
|
|
<link rel="stylesheet" href="closure/goog/css/common.css" type="text/css">
|
|
<link rel="stylesheet" href="closure/goog/css/toolbar.css" type="text/css">
|
|
</head>
|
|
<body>
|
|
|
|
<script>
|
|
var page = new camlistore.SearchPage(CAMLISTORE_CONFIG);
|
|
page.decorate(document.body);
|
|
</script>
|
|
</body>
|
|
</html>
|