docs: add footer

This commit is contained in:
vindarel 2020-12-11 01:44:27 +01:00
parent 551f7614eb
commit 6bf5a0a67a

View file

@ -41,7 +41,22 @@
// To avoid search index collision
// between multiple websites under the same domain
namespace: 'ciel-lang.org',
}
},
plugins: [
function(hook) {
var footer = [
'<hr/>',
'<footer style="text-align: right;">',
'<span>CIEL developers 2020. <a href="https://github.com/sponsors/vindarel/">Become a sponsor!</a></span>',
'</footer>'
].join('');
hook.afterEach(function(html) {
return html + footer;
});
}
]
}
</script>
<!-- <script src="//unpkg.com/docsify/lib/docsify.min.js"></script> -->