-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfeeds.html
27 lines (27 loc) · 915 Bytes
/
feeds.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>WebFeed Feeds</title>
<link rel="icon" href="./icons/icon.png">
<link rel="stylesheet" href="./css/water.css">
<link rel="stylesheet" href="./css/header.css">
<link rel="stylesheet" href="./css/feeds.css">
<script src="./js/feeds.js" type="module"></script>
</head>
<body>
<main>
<header>
<h1><a href="list.html">WebFeed</a></h1>
<a class="menu-item" href="feeds.html">📡Feeds</a>
<a class="menu-item" href="logs.html">🔬Logs</a>
<a class="menu-item" href="options.html">⚙️Options</a>
</header>
<h2>Feeds you are following</h2>
<ol class="items"></ol>
<button id="import">Import from OPML</button>
<button id="export">Export to OPML</button>
<input type="file" id="import-file" accept="text/xml">
</body>
</main>
</html>