git ssb

2+

cel / scuttlebot.io



Tree: ed02ea80607adb283fd3b95f8f6bf5d5fab75608

Files: ed02ea80607adb283fd3b95f8f6bf5d5fab75608 / tmpl / head.part.js

510 bytesRaw
1module.exports = (opts) => {
2 opts = opts || {}
3 if (opts.title)
4 opts.title += ' - Scuttlebot'
5 else
6 opts.title = 'Scuttlebot peer-to-peer log store'
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