diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-07-06 16:56:06 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-07-06 17:24:41 -0700 |
commit | 5c3b1575ac64bc59959c9ace61aad132b914607a (patch) | |
tree | 626f4512c81c41cb2f1522938a2bd24139cf501d /templates | |
parent | 2ff9672fdceff76476ea15fcd456186d37569deb (diff) | |
download | pandoc-5c3b1575ac64bc59959c9ace61aad132b914607a.tar.gz |
Slidy template: Add $duration$ variable.
Setting this activates the timer.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/slidy.template | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/slidy.template b/templates/slidy.template index e2653b91e..adcb41fc1 100644 --- a/templates/slidy.template +++ b/templates/slidy.template @@ -26,7 +26,8 @@ $else$ href="http://www.w3.org/Talks/Tools/Slidy2/styles/slidy.css" /> $endif$ $for(css)$ - <link rel="stylesheet" href="$css$" type="text/css" /> + <link rel="stylesheet" type="text/css" media="screen, projection, print" + href="$css$" /> $endfor$ $if(math)$ $math$ @@ -42,6 +43,9 @@ $else$ <script src="http://www.w3.org/Talks/Tools/Slidy2/scripts/slidy.js.gz" charset="utf-8" type="text/javascript"></script> $endif$ +$if(duration)$ + <meta name="duration" content="$duration$" /> +$endif$ </head> <body> $for(include-before)$ |