Fix revealjs theme functionality
Use up-to-date theme as link convention for revealjs. Leave old theme as config option just in case. Match current revealjs behavior of defaulting to "black" theme. Fixes #80 Signed-off-by: Aaron Browne <aaron0browne@gmail.com>
This commit is contained in:
parent
cc302d99be
commit
066b307b63
1 changed files with 5 additions and 0 deletions
|
@ -26,6 +26,11 @@ $for(css)$
|
|||
$endfor$
|
||||
$else$
|
||||
<link rel="stylesheet" href="$revealjs-url$/css/theme/simple.css" id="theme">
|
||||
$endif$
|
||||
$if(theme)$
|
||||
<link rel="stylesheet" href="$revealjs-url$/css/theme/$theme$.css" id="theme">
|
||||
$else$
|
||||
<link rel="stylesheet" href="$revealjs-url$/css/theme/black.css" id="theme">
|
||||
$endif$
|
||||
<!-- If the query includes 'print-pdf', include the PDF print sheet -->
|
||||
<script>
|
||||
|
|
Loading…
Reference in a new issue