diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-04-07 20:31:00 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-04-07 20:31:00 -0700 |
commit | c3aa395c715e7d7e2e79b3f37078ef84a2f69172 (patch) | |
tree | bf682fa9ab8ed453ed205016f54715b4ef3c11f2 /default.revealjs | |
parent | 1d55d847308dd681c80312e0d9549d5c765bf4cc (diff) | |
download | pandoc-c3aa395c715e7d7e2e79b3f37078ef84a2f69172.tar.gz |
reveal.js template: move custom css after theme.
This allows custom css to modify themes, instead of being replaced
by themes.
Closes #91.
Diffstat (limited to 'default.revealjs')
-rw-r--r-- | default.revealjs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/default.revealjs b/default.revealjs index 7e2a3b30e..c3fd3532f 100644 --- a/default.revealjs +++ b/default.revealjs @@ -20,14 +20,14 @@ $if(highlighting-css)$ $highlighting-css$ </style> $endif$ -$for(css)$ - <link rel="stylesheet" href="$css$"/> -$endfor$ $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$ +$for(css)$ + <link rel="stylesheet" href="$css$"/> +$endfor$ <!-- If the query includes 'print-pdf', include the PDF print sheet --> <script> if( window.location.search.match( /print-pdf/gi ) ) { |