diff options
Diffstat (limited to 'templates/layouts/page.html')
-rw-r--r-- | templates/layouts/page.html | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/templates/layouts/page.html b/templates/layouts/page.html index 5856a91..554ba45 100644 --- a/templates/layouts/page.html +++ b/templates/layouts/page.html | |||
@@ -10,8 +10,21 @@ | |||
10 | <span class="s-headings__primary">$title$</span> | 10 | <span class="s-headings__primary">$title$</span> |
11 | </h1> | 11 | </h1> |
12 | 12 | ||
13 | <div class="s-body s-colored-links s-headings s-blockquotes s-code s-lists s-tables e-content" itemprop="articleBody"> | 13 | <div class="s-body s-colored-links s-headings s-blockquotes s-code s-lists s-tables s-alerts e-content" itemprop="articleBody"> |
14 | $body$ | 14 | $body$ |
15 | </div> | 15 | </div> |
16 | |||
17 | $if(references)$ | ||
18 | <footer class="s-body s-colored-links s-lists"> | ||
19 | <hr /> | ||
20 | |||
21 | <h1>References</h1> | ||
22 | <ul> | ||
23 | $for(references)$ | ||
24 | <li><a href="$it.url$">$it.label$</a></li> | ||
25 | $endfor$ | ||
26 | </ul> | ||
27 | </footer> | ||
28 | $endif$ | ||
16 | </article> | 29 | </article> |
17 | </main> | 30 | </main> |