diff options
-rw-r--r-- | doc/style.css | 4 | ||||
-rw-r--r-- | templates/inlinepage.tmpl | 4 | ||||
-rw-r--r-- | templates/page.tmpl | 4 |
3 files changed, 7 insertions, 5 deletions
diff --git a/doc/style.css b/doc/style.css index 34dd5a49c..0399031f8 100644 --- a/doc/style.css +++ b/doc/style.css @@ -102,7 +102,9 @@ td.changelog { border: 1px solid #aaa; } -.pagedate { +.pagedate, +.pagelicense, +.pagecopyright { clear: both; font-style: italic; display: block; diff --git a/templates/inlinepage.tmpl b/templates/inlinepage.tmpl index ad5e15425..a736dacb5 100644 --- a/templates/inlinepage.tmpl +++ b/templates/inlinepage.tmpl @@ -31,13 +31,13 @@ Tags: </TMPL_IF> <TMPL_IF COPYRIGHT> -<div class="copyright"> +<div class="pagecopyright"> <TMPL_VAR COPYRIGHT> </div> </TMPL_IF> <TMPL_IF LICENSE> -<div class="license"> +<div class="pagelicense"> License: <TMPL_VAR LICENSE> </div> </TMPL_IF> diff --git a/templates/page.tmpl b/templates/page.tmpl index 3281ac701..ebe31e7ee 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl @@ -90,14 +90,14 @@ Links: <TMPL_IF COPYRIGHT> <div class="copyright"> -<a name="page_copyright"></a> +<a name="pagecopyright"></a> <TMPL_VAR COPYRIGHT> </div> </TMPL_IF> <TMPL_IF LICENSE> <div class="license"> -<a name="page_license"></a> +<a name="pagelicense"></a> License: <TMPL_VAR LICENSE> </div> </TMPL_IF> |