|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public |
|
3 - License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
|
5 |
|
6 |
|
7 <!DOCTYPE html [ |
|
8 <!ENTITY % htmlDTD |
|
9 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
|
10 "DTD/xhtml1-strict.dtd"> |
|
11 %htmlDTD; |
|
12 <!ENTITY % globalDTD |
|
13 SYSTEM "chrome://global/locale/global.dtd"> |
|
14 %globalDTD; |
|
15 <!ENTITY % feedDTD |
|
16 SYSTEM "chrome://browser/locale/feeds/subscribe.dtd"> |
|
17 %feedDTD; |
|
18 ]> |
|
19 |
|
20 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
|
21 |
|
22 <html id="feedHandler" |
|
23 xmlns="http://www.w3.org/1999/xhtml"> |
|
24 <head> |
|
25 <title>&feedPage.title;</title> |
|
26 <link rel="stylesheet" |
|
27 href="chrome://browser/skin/feeds/subscribe.css" |
|
28 type="text/css" |
|
29 media="all"/> |
|
30 <link rel="stylesheet" |
|
31 href="chrome://browser/content/feeds/subscribe.css" |
|
32 type="text/css" |
|
33 media="all"/> |
|
34 <script type="application/javascript" |
|
35 src="chrome://browser/content/feeds/subscribe.js"/> |
|
36 </head> |
|
37 <body onload="SubscribeHandler.writeContent();" onunload="SubscribeHandler.uninit();"> |
|
38 <div id="feedHeaderContainer"> |
|
39 <div id="feedHeader" dir="&locale.dir;"> |
|
40 <div id="feedIntroText"> |
|
41 <p id="feedSubscriptionInfo1" /> |
|
42 <p id="feedSubscriptionInfo2" /> |
|
43 </div> |
|
44 <div id="feedSubscribeLine"></div> |
|
45 </div> |
|
46 </div> |
|
47 |
|
48 <script type="application/javascript"> |
|
49 SubscribeHandler.init(); |
|
50 </script> |
|
51 |
|
52 <div id="feedBody"> |
|
53 <div id="feedTitle"> |
|
54 <a id="feedTitleLink"> |
|
55 <img id="feedTitleImage"/> |
|
56 </a> |
|
57 <div id="feedTitleContainer"> |
|
58 <h1 id="feedTitleText"/> |
|
59 <h2 id="feedSubtitleText"/> |
|
60 </div> |
|
61 </div> |
|
62 <div id="feedContent"/> |
|
63 </div> |
|
64 </body> |
|
65 </html> |