permalink | title | description |
---|---|---|
/changelog/ |
Changelog |
Latest changes made to the website. |
In this list, you can see the last 30 changes to our website repository on GitHub.
<script> window.addEventListener("load", function () { $.getJSON("https://api.github.com/repos/{{ site.repository }}/commits", function(data) { var changelog = $("#github-changelog"); $.each(data, function(idx, commit) { var messageLines = commit.commit.message.split("\n").filter(Boolean); var title = messageLines.shift(); var messageString = messageLines.length > 0 ? messageLines.join('') + '
' : ''; var entry = '' + '
' +
'
';
changelog.append(entry);
});
});
});
</script>