-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticle.hbs
More file actions
29 lines (29 loc) · 964 Bytes
/
article.hbs
File metadata and controls
29 lines (29 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<article class="doc"
{{! Only pages that are 'latest' or unversioned are included in the pagefind search}}
{{#if page.latest}}
{{#if (eq page.displayVersion page.latest.displayVersion)}}
data-pagefind-body
{{/if}}
{{else}}
data-pagefind-body
{{/if}}
>
{{! In antora.yml set asciidoc.attributes.page-end-of-life to true/false}}
{{#if page.attributes.end-of-life}}
<aside class="end-of-life-banner">
<h4>This version of the Stackable Data Platform is no longer maintained.</h4>
<p>
{{#if page.canonicalUrl}}
Please read the <a href="{{{page.canonicalUrl}}}">latest version of this page</a> instead.
{{/if}}
The <a href="{{{ relativize (versioned "home" page "policies.html") }}}">lifecycle policies</a> define when a release stops receiving maintenance updates.
</p>
</aside>
{{/if}}
{{#with page.title}}
<h1 class="page" data-pagefind-weight="10.0">{{{this}}}</h1>
{{/with}}
{{{page.contents}}}
{{> feedback-form}}
{{> pagination}}
</article>