From 6bf5a0a67a83c9c8f0989ff6a6ac8bcd868af756 Mon Sep 17 00:00:00 2001 From: vindarel Date: Fri, 11 Dec 2020 01:44:27 +0100 Subject: [PATCH] docs: add footer --- docs/index.html | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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; + }); + } + ] }