Skip to content

Commit

Permalink
Merge pull request #119 from GokturkTalha/main
Browse files Browse the repository at this point in the history
Footer'a public domain görseli eklendi.
  • Loading branch information
GokturkTalha authored Nov 14, 2024
2 parents 89862b3 + 8a1d237 commit 4fffc84
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 16 deletions.
Binary file added docs/images/cc0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 20 additions & 16 deletions footer-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,28 @@ window.$docsify.plugins = [].concat(
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 ' +
'<a href="https://raw.githubusercontent.com/GuvendeKal/guvendekal.org/refs/heads/main/LICENSE" target="_blank">' +
'CC0 lisansı</a> altında kamu yararı gözetilerek topluluk tarafından yazılmıştır. ❤️ ' +
'</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>';
'<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
);

);

0 comments on commit 4fffc84

Please sign in to comment.