2024-09-28 23:43:05 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<html lang="en-US" prefix="og: https://ogp.me/ns#">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
{{> components/_head.hbs }}
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="{{ asset 'css/history.css' }}">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2024-10-30 23:25:21 +01:00
|
|
|
<span></span>
|
2024-09-28 23:43:05 +02:00
|
|
|
{{> components/_noscript.hbs }}
|
|
|
|
|
2024-10-30 23:25:21 +01:00
|
|
|
{{> components/_nav.hbs }}
|
|
|
|
{{> components/_header.hbs }}
|
|
|
|
|
2024-09-28 23:43:05 +02:00
|
|
|
<main class="version-history">
|
|
|
|
<p>{{ len page.commits }} commits</p>
|
|
|
|
|
|
|
|
<ul class="commits">
|
|
|
|
{{#each page.commits}}
|
|
|
|
<li>
|
|
|
|
<a class="revision-number" href="{{ ../config.site }}/{{ ../page.tree_path }}@{{ revision_number }}">#{{ revision_number }}</a>
|
|
|
|
<a href="{{ ../config.commit_base_url }}/{{ hash }}/content/{{ ../page.tree_path }}.tree"><code>{{ hash_short }}</code></a>
|
|
|
|
|
|
|
|
{{#if body}}
|
|
|
|
<details>
|
|
|
|
<summary class="summary">{{ summary }}</summary>
|
|
|
|
{{ body }}
|
|
|
|
</details>
|
|
|
|
{{else}}
|
|
|
|
<span class="summary">{{ summary }}</span>
|
|
|
|
{{/if}}
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
{{> components/_footer.hbs }}
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|