-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) · 1.7 KB
/
index.html
File metadata and controls
44 lines (40 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brick 1100 Apps</title>
<link rel="icon" href="https://brick1100.visnalize.com/favicon.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css">
<link rel="stylesheet" href="./index.css">
</head>
<body>
<div class="container is-max-desktop">
<section class="hero">
<div class="hero-body">
<h1 class="title is-size-1 has-text-centered mb-4">Brick 1100 Apps</h1>
<p class="subtitle is-size-4 has-text-centered">A collection of apps built for
<a class="has-text-weight-bold" href="https://visnalize.com/brick1100/about">Brick 1100</a>
</p>
<div class="grid is-col-min-12">
<div class="cell">
<a class="button is-primary is-large is-fullwidth"
href="https://visnalize.com/brick1100/builders/building-app" target="_blank">How to build an
app</a>
</div>
<div class="cell">
<a class="button is-primary is-outlined is-large is-fullwidth"
href="https://github.com/Visnalize/brick-1100-apps" target="_blank">Source code</a>
</div>
</div>
</div>
</section>
<section class="section" id="list"></section>
</div>
<script src="https://unpkg.com/mithril/mithril.js"></script>
<script src="./index.js"></script>
<script>
init('apps')
</script>
</body>
</html>