125a164f0d00d05ed8910f5d0289ed5e49521134
[vuplus_webkit] / Websites / bugs.webkit.org / template / en / default / list / list-simple.html.tmpl
1 [%# The contents of this file are subject to the Mozilla Public
2   # License Version 1.1 (the "License"); you may not use this file
3   # except in compliance with the License. You may obtain a copy of
4   # the License at http://www.mozilla.org/MPL/
5   #
6   # Software distributed under the License is distributed on an "AS
7   # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
8   # implied. See the License for the specific language governing
9   # rights and limitations under the License.
10   #
11   # The Original Code is the Bugzilla Bug Tracking System.
12   #
13   # The Initial Developer of the Original Code is Netscape Communications
14   # Corporation. Portions created by Netscape are
15   # Copyright (C) 1998 Netscape Communications Corporation. All
16   # Rights Reserved.
17   #
18   # Contributor(s): Myk Melez <myk@mozilla.org>
19   #%]
20
21 [%# INTERFACE:
22   # title: string. The title for this page. (optional)
23   #%]
24
25 [% PROCESS global/variables.none.tmpl %]
26
27 [%############################################################################%]
28 [%# Initialization                                                           #%]
29 [%############################################################################%]
30
31 [% DEFAULT title = "$terms.Bug List" %]
32
33 [%############################################################################%]
34 [%# Bug Table                                                                #%]
35 [%############################################################################%]
36
37 <html>
38
39   <head>
40     <title>[% title FILTER html %]</title>
41     <base href="[% urlbase FILTER html %]">
42     <link href="skins/standard/buglist.css" rel="stylesheet" type="text/css">
43   </head>
44
45   <body>
46     [% IF bugs.size == 0 %]
47       <h3>[% terms.zeroSearchResults %].</h3>
48     [% ELSE %]
49       [% PROCESS list/table.html.tmpl %]
50     [% END %]
51   </body>
52
53 </html>