-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathlayout.html
More file actions
60 lines (49 loc) · 1.91 KB
/
Copy pathlayout.html
File metadata and controls
60 lines (49 loc) · 1.91 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/svg+xml" href="<%= basePath %>/assets/favicon.svg">
<title><%= title %> — Armadietto</title>
<link rel="stylesheet" href="<%= basePath %>/assets/style.css">
<script defer src="<%= basePath %>/assets/armadietto-utilities.js"></script>
</head>
<body>
<header class="topbar" role="banner">
<h1>
<a class="server-name" href="<%= basePath %>/" title="home"><%= host %></a>
<span class="subtitle">
run with
<span class="logo">
<svg role="img" height="250" version="1.1" viewBox="0 0 739 853" xmlns="http://www.w3.org/2000/svg">
<title>armadietto logo</title>
<path d="m370.98-2.0508-369.81 213.2 86.396 45.572 283.42-161.13 283.82 163.86v66.385l-285.3-164.72-368.38 212.69v265.38l368.38 212.69 368.38-212.69v-166.32l1.4844-0.85742v-261.38zm-1.4844 260.82 283.82 163.86v1.4082l-282.34 163.01-283.78-165.29zm-283.82 261.21 285.3 164.72 282.34-163.01v68.672l-283.82 163.86-283.82-163.86z"/>
</svg>
Armadietto
</span>
</span>
</h1>
<nav role="navigation">
<ul>
<% if (signup) { %>
<li class="login">
<a class="signup" href="<%= basePath %>/signup">Sign up</a>
</li>
<% } %>
<li>
<button id="switch">Switch</button>
</li>
</ul>
<% if (typeof tosUrl !== 'undefined' && tosUrl) { %>
<ul>
<li><p><a href="<%= tosUrl %>" target="_blank">Terms of Service</a></p></li>
</ul>
<% } %>
</nav>
</header>
<main class="content" role="main">
<%- body %>
</main>
</body>
</html>