HTML-based slide shows: add support for institute (#7289)
Add institute variable (string or list) to HTML-based slide formats.
This commit is contained in:
parent
0794862aac
commit
97a0ee23bc
5 changed files with 19 additions and 1 deletions
|
@ -171,7 +171,7 @@ $if(subtitle)$
|
|||
<h1 class="subtitle">$subtitle$</h1>
|
||||
$endif$
|
||||
<footer>
|
||||
$if(author)$<span class="author">$for(author)$$author$$sep$, $endfor$</span>$endif$ · $if(date)$<span class="date">$date$</span>$endif$
|
||||
$if(author)$<span class="author">$for(author)$$author$$sep$, $endfor$</span> · $endif$$if(institute)$<span class="institute">$for(institute)$$institute$$sep$, $endfor$</span> · $endif$$if(date)$<span class="date">$date$</span>$endif$
|
||||
</footer>
|
||||
</section>
|
||||
$endif$
|
||||
|
|
|
@ -52,6 +52,9 @@ $endif$
|
|||
$for(author)$
|
||||
<p class="author">$author$</p>
|
||||
$endfor$
|
||||
$for(institute)$
|
||||
<p class="institute">$institute$</p>
|
||||
$endfor$
|
||||
$if(date)$
|
||||
<p class="date">$date$</p>
|
||||
$endif$
|
||||
|
|
|
@ -61,6 +61,9 @@ $endif$
|
|||
$if(author)$
|
||||
<h3 class="author">$for(author)$$author$$sep$<br/>$endfor$</h3>
|
||||
$endif$
|
||||
$if(institute)$
|
||||
<h3 class="institute">$for(institute)$$institute$$sep$<br/>$endfor$</h3>
|
||||
$endif$
|
||||
$if(date)$
|
||||
<h4 class="date">$date$</h4>
|
||||
$endif$
|
||||
|
|
|
@ -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$
|
||||
|
|
|
@ -52,6 +52,11 @@ $if(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$
|
||||
|
|
Loading…
Add table
Reference in a new issue