diff --git a/docs/index.html b/docs/index.html index 6745bce..4da5329 100644 --- a/docs/index.html +++ b/docs/index.html @@ -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 = [ + '
', + '' + ].join(''); + + hook.afterEach(function(html) { + return html + footer; + }); + } + ] }