-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 1.16 KB
/
index.html
File metadata and controls
40 lines (36 loc) · 1.16 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RSS Reader - Screenly Edge App</title>
<script src="screenly.js?version=1"></script>
</head>
<body>
<auto-scaler
reference-width="1920"
reference-height="1080"
orientation="auto"
>
<div id="app">
<app-header class="header" show-date></app-header>
<template id="feed-card-template">
<article class="feed-card">
<div class="feed-card-meta">
<h2 class="feed-card-title"></h2>
<time class="feed-card-date"></time>
</div>
<p class="feed-card-excerpt"></p>
<span class="feed-card-source"></span>
</article>
</template>
<p id="feed-date" class="feed-date"></p>
<main id="feed-grid" class="feed-grid" hidden></main>
<div id="feed-error" class="feed-error" hidden>
<p>Unable to load RSS feed.<br />Retrying…</p>
</div>
</div>
</auto-scaler>
<script type="module" src="/src/main.ts"></script>
</body>
</html>