You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
293 B
5 lines
293 B
echo "<h1>Recent Changes</h1>"
|
|
echo "<p>This list was generated from the git log for the website. The git repository for this webpage can be accessed from FIXME.</p>"
|
|
echo "<ul>"
|
|
git log --pretty=format:'<li>%s - %aN <b>(%cr)</b></li>' --abbrev-commit --date=relative --no-merges
|
|
echo "</ul>"
|
|
|