This repository was archived by the owner on Jul 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
73 lines (68 loc) · 2.43 KB
/
options.html
File metadata and controls
73 lines (68 loc) · 2.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<html>
<head>
<title>Reader Options</title>
<link rel="stylesheet" href="/css/options-page/about.css"/>
<link rel="stylesheet" href="/css/options-page/display-settings.css"/>
<link rel="stylesheet" href="/css/options-page/general-settings.css"/>
<link rel="stylesheet" href="/css/options-page/feed-list.css"/>
<link rel="stylesheet" href="/css/options-page/nav-menu.css"/>
<link rel="stylesheet" href="/css/options-page/options-page.css"/>
<link rel="stylesheet" href="/css/options-page/subscription-form.css"/>
<script type="module" src="/src/view/options-page/options-page.js"></script>
<script type="module" src="/src/view/cli.js"></script>
</head>
<body>
<table id="f-it"><tr><td id="nav-cell-container">
<ul id="navigation-menu">
<li id="subs-list-section" section="section-subscriptions">Subscriptions
<span id="subscription-count"></span></li>
<li id="mi-add-subscription" section="section-add-subscription">Add a
subscription</li>
<li id="mi-general-settings" section="section-general-settings">General
settings</li>
<li id="mi-display-settings" section="section-display-settings">Display
settings</li>
<li id="mi-view-about" section="about">About</li>
<li id="mi-feed-details" section="section-feed-details" style="display: none;">
hidden feed details placeholder</li>
</ul>
</td><td id="section-layout-container">
<div id="section-subscriptions" class="options-section">
<h1>Subscriptions</h1>
<p id="nosubs" class="option-text">No subscriptions</p>
<ul id="feedlist"></ul>
</div>
<div id="section-general-settings" class="options-section"></div>
<div id="section-feed-details" class="options-section">
<h1 id="details-title-container">
<img id="details-favicon" width="24">
<span id="details-title"></span>
</h1>
<table id="feed-details-table">
<tr>
<td colspan="2">
<button id="details-unsubscribe">Unsubscribe</button>
<button id="details-activate">Activate</button>
<button id="details-deactivate">Deactivate</button>
</td>
</tr>
<tr>
<td>Description:</td>
<td id="details-feed-description"></td>
</tr>
<tr>
<td>Feed location:</td>
<td id="details-feed-url"></td>
</tr>
<tr>
<td>Website:</td>
<td id="details-feed-link"></td>
</tr>
</table>
</div>
<div id="section-add-subscription" class="options-section"></div>
<div id="section-display-settings" class="options-section"></div>
<div id="about" class="options-section"></div>
</td></tr></table>
</body>
</html>