From fa5067c462e29c82c72fce17c23822363c5e6a77 Mon Sep 17 00:00:00 2001 From: John MacFarlane <jgm@berkeley.edu> Date: Wed, 14 Jul 2010 09:09:15 -0700 Subject: [PATCH] HTML template: make inclusion of date meta conditional. --- templates/html.template | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/html.template b/templates/html.template index 1d07a2cfb..c53bbf6d7 100644 --- a/templates/html.template +++ b/templates/html.template @@ -7,7 +7,9 @@ $for(author)$ <meta name="author" content="$author$" /> $endfor$ +$if(date)$ <meta name="date" content="$date$" /> +$endif$ $if(highlighting)$ <style type="text/css"> table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode, table.sourceCode pre { margin: 0; padding: 0; border: 0; vertical-align: baseline; border: none; }