diff options
-rw-r--r-- | skins/standard/index.css | 7 | ||||
-rw-r--r-- | template/en/default/index.html.tmpl | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/skins/standard/index.css b/skins/standard/index.css index 09a81b541..f61a5b08d 100644 --- a/skins/standard/index.css +++ b/skins/standard/index.css @@ -21,6 +21,13 @@ padding: 0.2em 0.2em 0.15em 0.2em; } + /* By default these contain nothing, but these CSS rules make things + easier on customizers. */ + .intro, .outro { + text-align: center; + width: 50em; + } + /* Hide from NN4 */ #new_release diff --git a/template/en/default/index.html.tmpl b/template/en/default/index.html.tmpl index 82fbf9bd7..6231baa43 100644 --- a/template/en/default/index.html.tmpl +++ b/template/en/default/index.html.tmpl @@ -123,11 +123,11 @@ YAHOO.util.Event.onDOMReady(onLoadActions); [% END %] <div id="page-index"> - <div class="intro"></div> <table> <tr> <td> <h1 id="welcome"> Welcome to [% terms.Bugzilla %]</h1> + <div class="intro">[% Hook.process('intro') %]</div> <a id="enter_bug" class="bz_common_actions" href="enter_bug.cgi"><span>File [% terms.aBug %]</span></a> @@ -177,10 +177,10 @@ YAHOO.util.Event.onDOMReady(onLoadActions); </ul> </div> </form> + <div class="outro">[% Hook.process('outro') %]</div> </td> </tr> </table> - <div class="outro"></div> </div> [% PROCESS global/footer.html.tmpl %] |