mirror of
https://github.com/kennethreitz-archive/reflog.git
synced 2026-06-20 23:40:58 +00:00
15 lines
205 B
HTML
15 lines
205 B
HTML
<!doctype html>
|
|
<title>Tests</title>
|
|
|
|
<body onload="">
|
|
|
|
<h1>GitHub Commits</h1>
|
|
|
|
{% for commit in commits %}
|
|
|
|
<li>
|
|
<pre>[{{ commit.author }}] {{ commit.message }}</pre>
|
|
</li>
|
|
|
|
{% endfor %}
|