Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 1.31 KB

changelog.md

File metadata and controls

30 lines (27 loc) · 1.31 KB
permalink title description
/changelog/
Changelog
Latest changes made to the website.

Website Changelog

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 = '' + '
' + '
' + messageString + new Date(commit.commit.author.date).toLocaleString("en-US") + ' by ' + commit.author.login + '
'; changelog.append(entry); }); }); }); </script>