-
Notifications
You must be signed in to change notification settings - Fork 0
/
show.html
31 lines (31 loc) · 875 Bytes
/
show.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebFeed Show Feed</title>
<link rel="icon" href="./icons/icon.png">
<link rel="stylesheet" href="./css/water.css">
<link rel="stylesheet" href="./css/show.css">
<script src="./js/show.js" defer type="module"></script>
</head>
<body>
<header>
<h1></h1>
<img id="site-icon" src="">
<a id="site-link" href="" target="_blank"></a>
<subscribe-button></subscribe-button>
</header>
<main>
<div class="items"></div>
</main>
<template id="feed-item">
<article>
<h2></h2>
<time></time>
<div class="summary"></div>
<a class="link" href="" target="_blank">Read more...</a>
</article>
</template>
</body>
</html>