aboutsummaryrefslogtreecommitdiff
path: root/data/templates/default.slideous
diff options
context:
space:
mode:
authorThomas Hodgson <hello@twshodgson.net>2021-05-15 18:56:48 +0200
committerGitHub <noreply@github.com>2021-05-15 09:56:48 -0700
commit97a0ee23bc2d7ec90d193f41fb89f91bc66f6528 (patch)
tree22c54aa12ed089e7b0641651ad41202ca6b2b9ad /data/templates/default.slideous
parent0794862aacdb5d28616dadc3d681a63c36251212 (diff)
downloadpandoc-97a0ee23bc2d7ec90d193f41fb89f91bc66f6528.tar.gz
HTML-based slide shows: add support for institute (#7289)
Add institute variable (string or list) to HTML-based slide formats.
Diffstat (limited to 'data/templates/default.slideous')
-rw-r--r--data/templates/default.slideous7
1 files changed, 7 insertions, 0 deletions
diff --git a/data/templates/default.slideous b/data/templates/default.slideous
index ebf582dca..70d144bc7 100644
--- a/data/templates/default.slideous
+++ b/data/templates/default.slideous
@@ -63,9 +63,16 @@ $if(title)$
$if(subtitle)$
<h1 class="subtitle">$subtitle$</h1>
$endif$
+$if(author)$
<p class="author">
$for(author)$$author$$sep$<br/>$endfor$
</p>
+$endif$
+$if(institute)$
+ <p class="institute">
+$for(institute)$$institute$$sep$<br/>$endfor$
+ </p>
+$endif$
$if(date)$
<p class="date">$date$</p>
$endif$