-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (67 loc) · 1.81 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
---
layout: default
---
<section class="hero border-bottom">
<h1>project magnet</h1>
<p>experiments on the physical web</p>
</section>
<section class="app-section app-section-mobile-app border-bottom" id="mobile">
<div class="inner">
<h2>mobile</h2>
<div class="app-section-text">{{ site.mobile_text | markdownify }}</div>
<div class="store-icons l-margin-vertical">
<a
data-track="link-app-store-android"
href="{{ site.store_links.android }}"
><img class="store-icon" src="images/google-play.png"/>
</a>
<a
data-track="link-app-store-ios"
href="{{ site.store_links.ios }}"
><img class="store-icon" src="images/apple-app-store.png"/>
</a>
</div>
</div>
</section>
<section class="app-section app-section-about border-bottom" id="about">
<div class="inner">
<h2>about</h2>
<div class="app-section-text">
{% capture about-text %}{% include about.md %}{% endcapture %}
{{ about-text | markdownify }}
</div>
</div>
</section>
<section class="app-section app-section-contact" id="contact">
<div class="inner">
<h2>contact</h2>
<!-- <div class="app-section-text">
<p>{{ site.contact_text }}</p>
</div> -->
<ul class="contact-buttons">
<li>
<a
href="https://twitter.com/trymagnet"
data-track="link-twitter"
>twitter</a>
</li>
<li>
<a
href="https://github.com/mozilla-magnet/magnet"
data-track="link-github"
>github</a></li>
<li>
<a
href="mailto:[email protected]"
data-track="link-email"
>email</a>
</li>
<li>
<a
href="irc://irc.mozilla.org/magnet"
data-track="link-irc"
>irc</a>
</li>
</ul>
</div>
</section>