diff options
| -rw-r--r-- | default.html | 4 | ||||
| -rw-r--r-- | default.s5 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/default.html b/default.html index 8c638bfc4..2bae586a7 100644 --- a/default.html +++ b/default.html @@ -54,10 +54,10 @@ $else$ $endif$ <h1 class="title">$title$</h1> $for(author)$ -<h3 class="author">$author$</h3> +<h2 class="author">$author$</h2> $endfor$ $if(date)$ -<h4 class="date">$date$</h4> +<h3 class="date">$date$</h3> $endif$ $if(html5)$ </header> diff --git a/default.s5 b/default.s5 index 87b39f268..14d153863 100644 --- a/default.s5 +++ b/default.s5 @@ -57,8 +57,8 @@ $endfor$ $if(title)$ <div class="slide"> <h1>$title$</h1> - <h3>$for(author)$$author$$sep$<br/>$endfor$</h3> - <h4>$date$</h4> + <h2>$for(author)$$author$$sep$<br/>$endfor$</h2> + <h3>$date$</h3> </div> $endif$ $body$ |
