Skip to content

Latest commit

 

History

History
48 lines (42 loc) · 1.78 KB

File metadata and controls

48 lines (42 loc) · 1.78 KB
layout page
title About
permalink about

A place to collect all the little quirks with fonts and software

Slack (german speaking group)

Slack Group: FontMasters{:target="_blank"}

Github

This project is independend of any company – just people passionated about fonts.
Feel free to contribute via Github{:target="_blank"}

Contributors

<script> document.addEventListener("DOMContentLoaded", function () { const repoOwner = "ollimeier"; // Change to your GitHub username or organization const repoName = "fonttechknowledge"; // Change to your repository name const contributorsContainer = document.getElementById("contributors"); fetch(`https://api.github.com/repos/${repoOwner}/${repoName}/contributors`) .then(response => response.json()) .then(contributors => { contributorsContainer.innerHTML = ""; contributors.forEach(contributor => { const contributorElement = document.createElement("div"); contributorElement.innerHTML = ` ${contributor.login}

${contributor.login} (${contributor.contributions} contributions)

`; contributorsContainer.appendChild(contributorElement); }); }) .catch(error => { contributorsContainer.innerHTML = "

Error loading contributors.

"; console.error("Error fetching contributors:", error); }); }); </script>