Files: 81dbb45c53a3d0fae5a85ab40e963c1057a9fec0 / tmpl / footer.part.js
598 bytesRaw
1 | function item (current, path, label) { |
2 | var cls = '' |
3 | if (current == path) |
4 | cls = 'class="current"' |
5 | return `<li ${cls}><a href="${path}" title="${label}">${label}</a></li>` |
6 | } |
7 | |
8 | module.exports = (c) => `<div class="footer"> |
9 | <ul class="footer-section"> |
10 | <li>Community</li> |
11 | <li><p>#scuttlebutt on freenode</p></li> |
12 | <li><a href="https://github.com/ssbc">GitHub Org</a></li> |
13 | <li><a href="https://github.com/ssbc/ssb-server">GitHub Repo</a></li> |
14 | <li><a href="https://git.scuttlebot.io/%25hg8wG6xCDKVWoPYCS84HY7Adrd6JEUYoM23%2BGwn24I4%3D.sha256">git-ssb</a></li> |
15 | </ul> |
16 | </div>` |
Built with git-ssb-web