forked from GuvendeKal/guvendekal.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer-plugin.js
30 lines (30 loc) · 1.57 KB
/
footer-plugin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
window.$docsify.plugins = [].concat(
function(hook) {
hook.afterEach(function(html, next) {
var footer = '<footer style="text-align: center; margin-top: 50px; padding: 10px;">' +
// Footer içeriği
'<p>guvendekal.org içinde bulunan tüm içerikler ' +
'kamu yararı gözetilerek topluluk tarafından yazılmıştır. ❤️ ' +
'</p>' +
// Public Domain
'<p>' +
'<a href="https://raw.githubusercontent.com/GuvendeKal/guvendekal.org/refs/heads/main/LICENSE" target="_blank">' +
'<img src="docs/images/cc0.png" alt="Public Domain" style="width: 150px; vertical-align: middle;">' +
'</a>' +
'</p>' +
// GitHub fork ve star widget'ları
'<p>' +
'<a href="https://github.com/GuvendeKal/guvendekal.org/fork" title="Forks on GitHub" target="_blank">' +
'<img src="https://img.shields.io/github/forks/GuvendeKal/guvendekal.org?style=social" alt="Forks">' +
'</a> ' +
'<a href="https://github.com/GuvendeKal/guvendekal.org/stargazers" title="Stars on GitHub" target="_blank">' +
'<img src="https://img.shields.io/github/stars/GuvendeKal/guvendekal.org?style=social" alt="Stars">' +
'</a>' +
'</p>' +
'</footer>';
html = html + footer;
next(html);
});
},
window.$docsify.plugins
);