Files: 793444db02289c9a688dd7301e70f700cedbdd3d / index.js
952 bytesRaw
1 | var h = require('hyperscript') |
2 | var route = require('./views') |
3 | var avatar = require('./avatar') |
4 | |
5 | var id = require('./keys').id |
6 | |
7 | document.head.appendChild(h('style', require('./style.css.json'))) |
8 | |
9 | var screen = h('div#screen', {style: {position: 'absolute', top: '35px', bottom: '0px', left: '0px', right: '0px'}}) |
10 | |
11 | var nav = h('div.navbar', |
12 | h('div.internal', |
13 | h('li', h('a', {href: '#' + id}, h('span.avatar--small', avatar.image(id)))), |
14 | h('li', h('a', {href: '#' + id}, avatar.name(id))), |
15 | h('li', h('a', {href: '#'}, 'Public')), |
16 | h('li.right', h('a', {href: '#about'}, '?')) |
17 | ) |
18 | ) |
19 | |
20 | document.body.appendChild(nav) |
21 | document.body.appendChild(screen) |
22 | route() |
23 | |
24 | window.onhashchange = function () { |
25 | var oldscreen = document.getElementById('screen') |
26 | var newscreen = h('div#screen', {style: {position: 'absolute', top: '35px', bottom: '0px', left: '0px', right: '0px'}}) |
27 | oldscreen.parentNode.replaceChild(newscreen, oldscreen) |
28 | route() |
29 | } |
30 | |
31 |
Built with git-ssb-web