diff options
| author | Volpeon <git@volpeon.ink> | 2022-06-16 22:51:12 +0200 |
|---|---|---|
| committer | Volpeon <git@volpeon.ink> | 2022-06-16 22:51:12 +0200 |
| commit | 8c0706051eb7529429a7782de54af793ad6f0946 (patch) | |
| tree | 66050ddb000d39b681e1cd5a8428159c18f2af66 /templates/layouts | |
| parent | Fix metadata (diff) | |
| download | volpeon.ink-8c0706051eb7529429a7782de54af793ad6f0946.tar.gz volpeon.ink-8c0706051eb7529429a7782de54af793ad6f0946.tar.bz2 volpeon.ink-8c0706051eb7529429a7782de54af793ad6f0946.zip | |
Added alert component, added image description post from fedi
Diffstat (limited to 'templates/layouts')
| -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> |
