-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
31 lines (31 loc) · 1.03 KB
/
index.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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name='robots' content='noindex,follow' />
<title>G Reader</title>
<link rel="stylesheet" href="main.css">
<script src="https://telegram.org/js/telegram-web-app.js"></script>
</head>
<body>
<header>
<div class="headerpics">
<img id="userpic" class="circle" src="" alt="Your avatar" hidden/>
<img class="circle" src="https://nikstar.me/img/greader-icon.png" alt="G Reader" />
</div>
<div class="subs">
<h1>
Your subscriptions
</h1>
<h5 id="subs-count-info" hidden>
</h5>
<!-- todo: buttons - unsub all, export, import (?), subscribe (?) -->
</div>
</header>
<section class="list">
<input hidden type="search" id="search" placeholder="Search">
</section>
<section id="list" class="list">
</section>
<script src="app.js"></script>
</body>