-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
index.html
68 lines (62 loc) · 2.47 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1" />
<!-- Support for FB OpenGraph and Twitter -->
<!--#if expr="${request_uri} = /^\/([a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*)\/([a-fA-F0-9\-]{36}|[a-fA-F0-9]{4,6})/" -->
<!--#set var="post_id" value="$2" -->
<!--#include virtual="/v2/posts-opengraph/${post_id}" -->
<!--#endif -->
<!-- RSS autodiscovery -->
<!--#if expr="${request_uri} = /^\/([a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*)/" -->
<!--#set var="username" value="$1" -->
<!--#include virtual="/v2/timelines-metatags/${username}" -->
<!--#endif -->
<title>FreeFeed</title>
<meta name="description" content="FreeFeed is a small and free social network, that enables you to discover and discuss the interesting stuff your friends find on the web">
<link rel="icon" href="/assets/images/favicon.ico" sizes="48x48">
<link rel="icon" href="/assets/images/favicon.svg" sizes="any" type="image/svg+xml">
<link rel="apple-touch-icon" href="/assets/images/apple-touch-icon-180x180.png">
<noscript>
<style>
.js-only {
display: none;
}
</style>
</noscript>
<script id="custom-config" type="application/json">
<!--#block name="custom-config-stub" -->null<!--# endblock -->
<!--#include virtual="/config.json" stub="custom-config-stub" -->
</script>
<script type="inline" src="/src/startup.js"></script>
<link rel="stylesheet" href="/styles/startup.scss" />
<script type="module" src="/src/index.js"></script>
</head>
<body class="initial">
<div id="app" class="startup">
<h1 class="startup__logo-box">
<a href="/" class="startup__logo-link">FreeFeed</a>
</h1>
<div class="startup__info">
<p class="js-only startup__loading">Loading...</p>
<noscript>
<div class="startup__alert">
<p>Javascript is disabled!</p>
<p>
Looks like you have JavaScript disabled in your browser. Please enable it to enjoy our
service.
</p>
</div>
</noscript>
<div class="startup__alert startup__error">
<p class="startup__error-text">Something went wrong!</p>
<p>
Try to <button onclick="location.reload(true)">reload</button> this page or contact
support.
</p>
</div>
</div>
</div>
</body>
</html>