{$t.git.history}
{$t.git.refresh}
{#if loading}
{:else if history.length === 0}
{$t.git.no_commits}
{:else}
{#each history as commit}
{commit.message}
{commit.hash.substring(0, 7)}
{commit.author} • {new Date(commit.timestamp).toLocaleString()}
{/each}
{/if}