head-info.hbs 663 Bytes
Newer Older
minseok.park's avatar
minseok.park committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
    {{#with page.canonicalUrl}}
    <link rel="canonical" href="{{{this}}}">
    {{/with}}
    {{#unless (eq page.attributes.pagination undefined)}}
    {{#with page.previous}}
    <link rel="prev" href="{{{relativize ./url}}}">
    {{/with}}
    {{#with page.next}}
    <link rel="next" href="{{{relativize ./url}}}">
    {{/with}}
    {{/unless}}
    {{#with page.description}}
    <meta name="description" content="{{{detag this}}}">
    {{/with}}
    {{#with page.keywords}}
    <meta name="keywords" content="{{{this}}}">
    {{/with}}
    {{#with (or antoraVersion site.antoraVersion)}}
    <meta name="generator" content="Antora {{{this}}}">
    {{/with}}