mirror of https://github.com/perkeep/perkeep.git
48 lines
1.7 KiB
HTML
48 lines
1.7 KiB
HTML
<!--
|
|
Copyright 2012 Google Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<link rel="shortcut icon" sizes="16x16" href="safe1-16.png">
|
|
<link rel="shortcut icon" sizes="32x32" href="safe1-32.png">
|
|
<link rel="apple-touch-icon" sizes="16x16" href="safe1-16.png">
|
|
<link rel="apple-touch-icon" sizes="32x32" href="safe1-32.png">
|
|
|
|
<script src="closure/goog/base.js"></script>
|
|
<script src="./deps.js"></script>
|
|
<script src="?camli.mode=config&var=CAMLISTORE_CONFIG"></script>
|
|
<script src="react/react-with-addons.js"></script>
|
|
|
|
<script>
|
|
goog.require('camlistore.IndexPage');
|
|
</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="detail.css" type="text/css">
|
|
<link rel="stylesheet" href="index.css" type="text/css">
|
|
<link rel="stylesheet" href="nav.css" type="text/css">
|
|
<link rel="stylesheet" href="closure/goog/css/common.css" type="text/css">
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800">
|
|
</head>
|
|
<body>
|
|
<script>
|
|
var page = new camlistore.IndexPage(CAMLISTORE_CONFIG);
|
|
page.decorate(document.body);
|
|
</script>
|
|
</body>
|
|
</html>
|