Update index.html: more xontribs to show

This commit is contained in:
Andy Kipp 2025-02-26 13:05:52 +06:00 committed by GitHub
parent c1e9186fe3
commit 48be4891a2
Failed to generate hash of commit

View file

@ -719,7 +719,7 @@ chmod +x xonsh-x86_64.AppImage
$.get( "https://api.github.com/search/repositories?q=topic:xontrib&sort=stars")
.done(function( data ) {
xontribs = ''
getRandomSubarray(data['items'], 8).forEach(function (repo, index) {
getRandomSubarray(data['items'], 12).forEach(function (repo, index) {
xontribs += '<div class="col-lg-3 col-md-6"><div class="product-single text-center"><div class="prod-details"><p><a href="' + repo['html_url'] + '" target="_blank">'+repo['name']+'</a></p><p>' + sentence(repo['description']) + '<div class="icon"><i class="icofont-star"></i>' + repo['stargazers_count'] + '</div> </p></div></div></div>';
});
$( "#github_xontribs" ).hide();