Bug 518974: Hooks to add text to index.cgi

Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=dkl, a=mkanat


git-svn-id: svn://10.0.0.236/trunk@258646 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org 2009-10-09 04:39:17 +00:00
parent c70c2cf9ff
commit 4560c30f49
2 changed files with 9 additions and 2 deletions

View File

@ -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

View File

@ -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 %]