mirror of
https://github.com/System-End/My-website.git
synced 2026-04-19 19:45:10 +00:00
10 lines
No EOL
377 B
JavaScript
10 lines
No EOL
377 B
JavaScript
fetch('/github-repos')
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
const repoList = document.getElementById('repo-list');
|
|
data.forEach(repo => {
|
|
const listItem = document.createElement('li');
|
|
listItem.innerHTML = `<h3>${repo.name}</h3><p>${repo.readme}</p>`;
|
|
repoList.appendChild(listItem);
|
|
});
|
|
}); |