-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.html
35 lines (35 loc) · 1.05 KB
/
list.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
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>WebFeed Entries</title>
<link rel="icon" href="./icons/icon.png">
<link rel="stylesheet" href="./css/water.css">
<link rel="stylesheet" href="./css/list.css">
<script src="./js/list.js" type="module"></script>
</head>
<body>
<main>
<header>
<h1>WebFeed</h1>
<a class="menu-item" href="feeds.html" target="_blank">📡Feeds</a>
<a class="menu-item" href="logs.html" target="_blank">🔬Logs</a>
<a class="menu-item" href="options.html" target="_blank">⚙️Options</a>
</header>
<div class="items"></div>
<div id="more" data-last="0">Load more</div>
</main>
</body>
<template id="feed-item">
<article>
<h2></h2>
<div class="summary"></div>
<div class="meta">
<img class="icon" src="">
<a class="site" href="" target="_blank"></a>
<time></time>
<a class="link" href="" target="_blank">Read more...</a>
</div>
</article>
</template>
</html>