git ssb

2+

cel / scuttlebot.io



Tree: 3ed513c33a63c4dec6c04e26770a621df61cc360

Files: 3ed513c33a63c4dec6c04e26770a621df61cc360 / tmpl / head.part.js

517 bytesRaw
1module.exports = (opts) => {
2 opts = opts || {}
3 if (opts.title)
4 opts.title += ' - Scuttlebot.io'
5 else
6 opts.title = 'Scuttlebot.io - a social p2p database'
7
8 return `<head>
9 <title>${opts.title}</title>
10 <link rel="icon" href="/img/icon.png">
11 <link rel="stylesheet" href="/css/index.css">
12 <link rel="stylesheet" href="/css/prism.css">
13 <script src="/js/prism.js"></script>
14 <script src="/js/code-examples.js"></script>
15 <script src="/js/table-of-contents.js"></script>
16 </head>`
17}

Built with git-ssb-web