ListView
{#if Array.isArray(commits.history.commits)}
{#each commits.history.commits as c}
{c[0]} {JSON.stringify(c[1])}
{/each}
{/if}
HEADS: {#each commits.heads as head} {head} , {/each}
TRIPLES:
{#each commits.graph as triple}
{triple}
{/each}
{#each commits.files as file}
{file.name}
{#await get_blob(file)}
{:then url}
{#if url}

{/if}
{/await}
{/each}