Mercurial > addons > firefox-addons > feed-preview
comparison web_resources/feed-preview.xhtml @ 0:bc5cc170163c
Initial revision
author | Guido Berhoerster <guido+feed-preview@berhoerster.name> |
---|---|
date | Wed, 03 Oct 2018 23:40:57 +0200 |
parents | |
children | 1c31f4102408 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:bc5cc170163c |
---|---|
1 <html xmlns="http://www.w3.org/1999/xhtml"> | |
2 <head> | |
3 <meta charset="utf-8"/> | |
4 <!-- | |
5 Copyright (C) 2018 Guido Berhoerster <guido+feed-preview@berhoerster.name> | |
6 | |
7 This Source Code Form is subject to the terms of the Mozilla Public | |
8 License, v. 2.0. If a copy of the MPL was not distributed with this | |
9 file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
10 --> | |
11 <meta name="viewport" content="width=device-width, initial-scale=1"/> | |
12 <base href=""/> | |
13 <link rel="stylesheet" href="style/feed-preview.css"/> | |
14 <title></title> | |
15 </head> | |
16 <body> | |
17 <template id="feed-logo-template"> | |
18 <img id="feed-logo" src="" alt=""/> | |
19 </template> | |
20 <template id="entry-template"> | |
21 <article> | |
22 <details class="entry"> | |
23 <summary> | |
24 <header class="entry-header"> | |
25 <p class="entry-date"><time></time></p> | |
26 </header> | |
27 </summary> | |
28 <iframe class="entry-content" srcdoc="" title="" sandbox="" | |
29 width="800" height="360"/> | |
30 </details> | |
31 </article> | |
32 </template> | |
33 <template id="entry-title-template"> | |
34 <h1 class="entry-title"></h1> | |
35 </template> | |
36 <template id="entry-title-linked-template"> | |
37 <h1 class="entry-title"><a class="entry-link" href="" title=""></a></h1> | |
38 </template> | |
39 <template id="entry-files-list-template"> | |
40 <footer class="entry-files"> | |
41 <h2 class="entry-files-title"></h2> | |
42 <ul class="entry-files-list"> | |
43 </ul> | |
44 </footer> | |
45 </template> | |
46 <template id="entry-file-template"> | |
47 <li class="entry-file"><a class="entry-file-link" href="" title=""></a> | |
48 <span class="entry-file-info"></span></li> | |
49 </template> | |
50 <header id="feed-header"> | |
51 <h1 id="feed-title"></h1> | |
52 <p id="feed-subtitle"></p> | |
53 </header> | |
54 </body> | |
55 </html> |