{#if git}

Branch: {git.branch}

Commit: {git.sha.slice(0, 7)} – {git.commit_message}

Commits since last release: {git.commits_since_last_release}

Timestamp: {new Date(git.commit_timestamp).toLocaleString()}

{/if} {#if changelog} {#each parseChangelog(changelog) as release (release)}
{@html release.description}
{#if release?.commits?.length}
{#each release.commits as commit (commit)}

{commit.sha} {commit.description}

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