mirror of https://github.com/perkeep/perkeep.git
40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
<!--
|
|
Copyright 2013 The Camlistore Authors
|
|
|
|
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="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800">
|
|
<link rel="stylesheet" href="nav.css">
|
|
<script src="closure/goog/base.js"></script>
|
|
<script src="deps.js"></script>
|
|
<script>
|
|
goog.require('camlistore.Nav');
|
|
goog.require('goog.dom.classes');
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
var nav = new camlistore.Nav(goog.dom.getDomHelper());
|
|
|
|
nav.addChild(new camlistore.Nav.SearchItem(goog.dom.getDomHelper(), 'search-white-16.png', 'Search'), true);
|
|
nav.addChild(new camlistore.Nav.Item(goog.dom.getDomHelper(), 'new-white-16.png', 'New Permanode'), true);
|
|
|
|
nav.render(document.body);
|
|
</script>
|
|
<body>
|
|
</html>
|