comparison sidebar/tab-collection-manager.html @ 0:d13d59494613

Initial revision
author Guido Berhoerster <guido+set-aside@berhoerster.name>
date Sat, 17 Nov 2018 10:44:16 +0100
parents
children 49ec0da1e698
comparison
equal deleted inserted replaced
-1:000000000000 0:d13d59494613
1 <!doctype html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <!--
6 Copyright (C) 2018 Guido Berhoerster <guido+set-aside@berhoerster.name>
7
8 This Source Code Form is subject to the terms of the Mozilla Public
9 License, v. 2.0. If a copy of the MPL was not distributed with this
10 file, You can obtain one at http://mozilla.org/MPL/2.0/.
11 -->
12 <script src="js/tab-collection-manager.js" defer></script>
13 <link rel="stylesheet" href="style/tab-collection-manager.css">
14 </head>
15 <body>
16 <template id="tab-collection-template">
17 <div class="tab-collection" data-tab-collection-uuid="">
18 <div class="tab-collection-header">
19 <h2 class="tab-collection-title"></h2>
20 <time class="tab-collection-ctime" datetime=""></time>
21 </div>
22 <ul class="tab-collection-actions">
23 <li><div class="restore-tab-collection" title=""></div></li>
24 <li><div class="remove-tab-collection" title=""></div></li>
25 </ul>
26 <ul class="tab-collection-tabs">
27 </ul>
28 </div>
29 </template>
30 <template id="tab-item-template">
31 <li class="tab-item" data-tab-uuid="">
32 <a class="tab-link" href="" title="">
33 <figure>
34 <img class="tab-thumbnail" width="224" height="128"
35 src="images/thumbnail-placeholder.svg" alt="">
36 <figcaption class="tab-title"></figcaption>
37 </figure>
38 <img class="tab-favicon" width="32" height="32"
39 src="images/defaultFavicon.svg" alt="">
40 </a>
41 <div class="remove-tab" href="" title=""></div>
42 </li>
43 </template>
44 <div id="tab-collections"><!-- leave empty so that the :empty CSS selector
45 applies --></div>
46 <div id="message">
47 </div>
48 </body>
49 </html>