2018-06-28 08:47:06 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2020-02-25 12:27:58 +01:00
|
|
|
<%if (locals.error) { %>
|
|
|
|
<title><%= error.message %></title>
|
|
|
|
<% } else { %>
|
2018-06-28 08:47:06 +02:00
|
|
|
<title><%= title %></title>
|
2020-02-25 12:27:58 +01:00
|
|
|
<% } %>
|
2018-07-03 18:39:23 -04:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2018-06-28 08:47:06 +02:00
|
|
|
|
2020-02-21 12:34:51 +01:00
|
|
|
<% if (locals.path) { %>
|
2020-03-19 17:42:49 +01:00
|
|
|
<meta property="status-im:target" content="<%= mainTarget %>" />
|
|
|
|
|
2018-07-03 10:36:39 +02:00
|
|
|
<meta property="al:ios:url" content="status-im:/<%= path %>" />
|
2018-06-28 08:47:06 +02:00
|
|
|
<meta property="al:ios:app_store_id" content="1178893006" />
|
|
|
|
<meta property="al:ios:app_name" content="Status — Ethereum. Anywhere" />
|
|
|
|
|
2018-07-03 10:36:39 +02:00
|
|
|
<meta property="al:android:url" content="status-im:/<%= path %>" />
|
2018-06-28 08:47:06 +02:00
|
|
|
<meta property="al:android:package" content="im.status.ethereum" />
|
|
|
|
<meta property="al:android:app_name" content="Status — Ethereum. Anywhere" />
|
2020-02-21 12:34:51 +01:00
|
|
|
<% } %>
|
2018-06-28 08:47:06 +02:00
|
|
|
|
2020-07-23 12:40:06 +02:00
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:400,600|IBM+Plex+Sans:400,500,700">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/site.min.css">
|
2018-06-28 08:47:06 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-07-23 12:40:06 +02:00
|
|
|
<%- include('header') %>
|
2020-02-21 12:34:51 +01:00
|
|
|
<%if (locals.error) { %>
|
|
|
|
<%- include('fail') %>
|
2020-04-02 11:27:57 +02:00
|
|
|
<% } else if (locals.redirect) { %>
|
|
|
|
<%- include('redirect') %>
|
2020-02-21 12:34:51 +01:00
|
|
|
<% } else { %>
|
|
|
|
<%- include('join') %>
|
|
|
|
<% } %>
|
2020-07-23 12:40:06 +02:00
|
|
|
<%- include('footer') %>
|
2019-04-18 18:11:15 +02:00
|
|
|
<script src="https://code.jquery.com/jquery-3.3.1.min.js" crossorigin="anonymous"></script>
|
|
|
|
<script type="text/javascript" src="/js/dev.js"></script>
|
2020-01-15 00:34:13 +02:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.4/clipboard.min.js"></script>
|
2019-04-18 18:11:15 +02:00
|
|
|
<script type='text/javascript' src='/js/app.js'></script>
|
2020-04-03 13:43:28 +02:00
|
|
|
<%- include('fathom') %>
|
2018-06-28 08:47:06 +02:00
|
|
|
</body>
|
|
|
|
</html>
|