HTML template: Display author(s) and date after title.

This commit is contained in:
John MacFarlane 2011-07-23 11:21:15 -07:00
parent 4900bcb128
commit 8590fab135

View file

@ -49,10 +49,20 @@ $endfor$
$if(title)$ $if(title)$
$if(html5)$ $if(html5)$
<header> <header>
$else$
<div id="header">
$endif$ $endif$
<h1 class="title">$title$</h1> <h1 class="title">$title$</h1>
$for(author)$
<h3 class="author">$author$</h3>
$endfor$
$if(date)$
<h4 class="date">$date$</h4>
$endif$
$if(html5)$ $if(html5)$
</header> </header>
$else$
</div>
$endif$ $endif$
$endif$ $endif$
$if(toc)$ $if(toc)$