blob: 80f3b3ca7043e21452ea2ea67ec332d4c72082f9 (
plain)
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
|
---
layout: page
type: article
---
{%- include snippets/assign.html
target = site.data.variables.default.page.sharing
source0=layout.sharing source1=page.sharing -%}
{%- assign _sharing = __return -%}
<div class="layout--article">
{%- include article/top/custom.html -%}
<div class="article__content" itemprop="articleBody">{{ content }}</div>
{%- if _sharing -%}
<section class="article__sharing d-print-none">{%- include sharing.html -%}</section>
{%- endif -%}
<div class="d-print-none">
{%- include article-footer.html -%}
{%- include article-section-navigator.html -%}
</div>
</div>
<script>
{%- include scripts/article.js -%}
</script>
|