gecko/browser/components/readinglist/sidebar.xhtml
Blair McBride d5378a0c2a Bug 1123517 - [ReadingList] Implement basic sidebar that lists unread ReadingList items. r=florian
--HG--
extra : transplant_source : %CC%E0%81%81%F9%93%D7h%2C%90%CC%EE%AAr%BD%5E%FDa%F2N
2015-02-20 22:07:24 +13:00

31 lines
1.1 KiB
HTML

<?xml version="1.0" encoding="UTF-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<!DOCTYPE html [
<!ENTITY % browserDTD SYSTEM "chrome://browser/locale/browser.dtd">
%browserDTD;
]>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="chrome://browser/content/readinglist/sidebar.js" type="application/javascript;version=1.8"></script>
<link rel="stylesheet" type="text/css" media="all" href="chrome://browser/skin/readinglist/sidebar.css"/>
<!-- <title>&readingList.label;</title> -->
</head>
<body role="application">
<template id="item-template">
<div class="item" role="option" tabindex="-1">
<div class="item-thumb-container"></div>
<div class="item-summary-container">
<div class="item-title"></div>
<div class="item-domain"></div>
</div>
</div>
</template>
<div id="list" role="listbox" tabindex="1"></div>
</body>
</html>