blob: 19369e219cd8cfe5680d67cc5ee595c73b9b2140 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
var h = require('mercury').h;
var insert = require('insert-css');
var css = require('./index.css');
var anchor = require('../router/anchor');
module.exports = {
render: render
};
function render(state, channels) {
insert(css);
if (state.hash) {
return h('.hidden');
}
return h('header', [
anchor({
href: '/',
className: 'menu'
}, 'Menu'),
h('.title', 'PDF Reader'),
h('a.more', {
href: '#'
}, '...')
]);
}