-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from GokturkTalha/main
Hukuksal bilgiler eklendi ve footer düzeltildi
- Loading branch information
Showing
2 changed files
with
19 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,26 @@ | ||
/* Footer bölümü */ | ||
|
||
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 ' + | ||
'<a href="https://raw.githubusercontent.com/GuvendeKal/guvendekal.org/refs/heads/main/LICENSE" target="_blank">' + | ||
'CC0 lisansı</a> altında kamu yararı gözetilerek yazılmıştır.' + | ||
'</p></footer>'; | ||
'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>'; | ||
html = html + footer; | ||
next(html); | ||
}); | ||
}, | ||
window.$docsify.plugins | ||
); | ||
|