diff options
author | Volpeon <git@volpeon.ink> | 2021-01-10 13:24:21 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2021-01-10 13:24:21 +0100 |
commit | 3ad6bd151364a3278618e3a26e21918d17680d24 (patch) | |
tree | 507d5de22d1e57ab86d4d3321d50cab86a3b38e8 /templates/layouts | |
parent | Added ream journal entry 1 (diff) | |
download | volpeon.ink-3ad6bd151364a3278618e3a26e21918d17680d24.tar.gz volpeon.ink-3ad6bd151364a3278618e3a26e21918d17680d24.tar.bz2 volpeon.ink-3ad6bd151364a3278618e3a26e21918d17680d24.zip |
Moved output filename handling into Pandoc filter, implemented path rewriting
Diffstat (limited to 'templates/layouts')
-rw-r--r-- | templates/layouts/page.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/layouts/page.html b/templates/layouts/page.html index ee1a816..61bcacd 100644 --- a/templates/layouts/page.html +++ b/templates/layouts/page.html | |||
@@ -4,7 +4,11 @@ | |||
4 | $if(menus.main.active)$ | 4 | $if(menus.main.active)$ |
5 | <div class="c-page__prefixed c-page__prefixed--backref c-page__header__backlink"> | 5 | <div class="c-page__prefixed c-page__prefixed--backref c-page__header__backlink"> |
6 | <a class="c-page__header__backlink__link" href="$menus.main.active.url$"> | 6 | <a class="c-page__header__backlink__link" href="$menus.main.active.url$"> |
7 | $menus.main.active.label$ | 7 | $if(menus.main.active.label_long)$ |
8 | $menus.main.active.label_long$ | ||
9 | $else$ | ||
10 | $menus.main.active.label$ | ||
11 | $endif$ | ||
8 | </a> | 12 | </a> |
9 | </div> | 13 | </div> |
10 | $endif$ | 14 | $endif$ |