diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2011-11-29 13:30:41 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2011-11-29 13:30:41 -0800 |
commit | 5facbc552da097dd150112457866a7785cfb21d4 (patch) | |
tree | a3305d7db2eb1fc6663b381597cb86e0f6272f62 /default.dzslides | |
parent | 6c48030dcd70359e5f9c2eeef8cb01873ac033a6 (diff) | |
download | pandoc-5facbc552da097dd150112457866a7785cfb21d4.tar.gz |
HTML-based templates: use separate variables for meta-date, meta-author.
Diffstat (limited to 'default.dzslides')
-rw-r--r-- | default.dzslides | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/default.dzslides b/default.dzslides index 67c1dea51..e7dcf8f4b 100644 --- a/default.dzslides +++ b/default.dzslides @@ -1,11 +1,11 @@ <!DOCTYPE html> <head> <meta charset="utf-8"> -$for(author)$ - <meta name="author" content="$author$" /> +$for(author-meta)$ + <meta name="author" content="$author-meta$" /> $endfor$ -$if(date)$ - <meta name="date" content="$date$" /> +$if(date-meta)$ + <meta name="date" content="$date-meta$" /> $endif$ <title>$if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$</title> $if(highlighting-css)$ |