summaryrefslogtreecommitdiffstats
path: root/src/partials/page-versions.hbs
blob: 9439f83ce45b524d067d5edb65e1b69811c66e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{#if page.versions}}
<div class="page-versions">
  <button class="versions-menu-toggle" title="Show other versions of page">{{page.version}}</button>
  <div class="versions-menu">
    {{#each page.versions}}
    <a class="version
      {{~#if (eq ./version @root.page.version)}} is-current{{/if~}}
      {{~#if ./missing}} is-missing{{/if}}" href="{{{relativize @root.page.url ./url}}}">{{./version}}</a>
    {{/each}}
  </div>
</div>
{{/if}}