diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-01-31 19:49:12 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-01-31 19:49:12 -0800 |
commit | 7db500273073897a14ff55bf774e17396bcc7527 (patch) | |
tree | 302a7b93ef77245137f510ae768772f16c433401 /default.revealjs | |
parent | cc302d99be66e4986807d5ec5f82ebf2ac38d643 (diff) | |
parent | 066b307b63fdf4d92a769f13f9df97aa47b11644 (diff) | |
download | pandoc-7db500273073897a14ff55bf774e17396bcc7527.tar.gz |
Merge pull request #81 from aaron0browne/issue-80
Fix revealjs theme functionality
Diffstat (limited to 'default.revealjs')
-rw-r--r-- | default.revealjs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/default.revealjs b/default.revealjs index f08f64791..dc4162820 100644 --- a/default.revealjs +++ b/default.revealjs @@ -27,6 +27,11 @@ $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> if( window.location.search.match( /print-pdf/gi ) ) { |