git ssb

2+

ev / mvd



Tree: 49ecefe8720bc3af7ddca1a70870bdbadceae6da

Files: 49ecefe8720bc3af7ddca1a70870bdbadceae6da / render.js

400 bytesRaw
1var h = require('hyperscript')
2
3var human = require('human-time')
4
5var avatar = require('./avatar')
6
7module.exports = function (msg) {
8 if (msg.value.content.type == 'post') {
9 return h('div.message__content',
10 h('span.timestamp', h('a', {href: msg.key}, human(new Date(msg.value.timestamp)))),
11 avatar.name(msg.value.author),
12 msg.value.content.text
13 )
14 } else { return }
15}
16

Built with git-ssb-web