-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
147 lines (142 loc) · 5.53 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
---
title: Firefox OS Foxfooding
---
{% include header.html %}
<br>
<div class="row-fluid">
<div id="installBanner" class="col-xs-12 hidden-sm hidden-md hidden-lg hide">
<div class="alert alert-info" role="alert">
<p>
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
Get the Foxfooding app!
</p>
<p>
<a id="installBtn" class="btn btn-success" href="#">
<span class="glyphicon glyphicon-floppy-disk"></span> Install
</a>
</p>
</div>
</div>
</div>
<div class="row-fluid">
<div class="col-sm-6 col-md-4 hidden-xs">
<h2> </h2>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Get the Foxfooding App!</h3>
</div>
<div class="panel-body">
Did you know that you can get the Foxfooding app on your phone? Just
navigate your phone browser to this page.
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Follow Us</h3>
</div>
<div class="panel-body">
<a href="https://twitter.com/share" class="twitter-share-button"
data-url="https://foxfooding.github.io" data-text="Firefox OS Foxfooding"
data-via="foxfooding" data-size="large"
data-hashtags="foxfooding">Tweet</a>
<script>!function(d,s,id){var
js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document,
'script', 'twitter-wjs');</script>
<p></p>
<p>Subscribe to our mailing list!</p>
<div class="input-group">
<input type="text" class="form-control" placeholder="Email..." disabled>
<span class="input-group-btn">
<a class="btn btn-primary" type="button" disabled>
<span class="glyphicon glyphicon-envelope" aria-hidden="true"></span> Subscribe
</a>
</span>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Get A Device!</h3>
</div>
<div class="panel-body">
<p>We’re not ready yet to be giving out devices, but stay tuned for
updates on our mailing list and social media.</p>
<a class="btn btn-success" disabled>Get a Device</a>
</div>
</div>
</div>
<div class="col-md-8 col-sm-6 col-xs-12">
<h2>Updates</h2>
<section class="articles">
<table class="table table-hover table-bordered table-striped">
{% assign has_items = false %}
{% for post in site.posts %}
{% if post.type == 'update' %}
<tr onclick="window.location.href='{{ post.url | prepend: site.url }}'">
<td>
<span class="pull-right glyphicon glyphicon-menu-right" aria-hidden="true"></span>
<a data-date="{{ post.date }}" href="{{ post.url | prepend: site.url }}">{{ post.title }}</a>
<br>
<span class="date">{{ post.date | date_to_long_string }}</span>,
by {{ post.author }}
</td>
</tr>
{% assign has_items = true %}
{% endif %}
{% endfor %}
{% if has_items == false %}
<tr><td>No updates.</td></tr>
{% endif %}
</table>
</section>
<h2>News</h2>
<section class="articles">
<table class="table table-hover table-bordered table-striped">
{% assign has_items = false %}
{% for post in site.posts %}
{% if post.type == 'news' %}
<tr onclick="window.location.href='{{ post.url | prepend: site.url }}'">
<td>
<span class="pull-right glyphicon glyphicon-menu-right" aria-hidden="true"></span>
<a data-date="{{ post.date }}" href="{{ post.url | prepend: site.url }}">{{ items }} {{ post.title }}</a>
<br>
<span class="date">{{ post.date | date_to_long_string }}</span>,
by {{ post.author }}
</td>
</tr>
{% assign has_items = true %}
{% endif %}
{% endfor %}
{% if has_items == false %}
<tr><td><a>No news.</a></td></tr>
{% endif %}
</table>
</section>
<h2>Issues</h2>
<section class="articles">
<table class="table table-hover table-bordered table-striped">
{% assign has_items = false %}
{% for post in site.posts %}
{% if post.type == 'issue' %}
<tr onclick="window.location.href='{{ post.url | prepend: site.url }}'">
<td>
<span class="pull-right glyphicon glyphicon-menu-right" aria-hidden="true"></span>
<a data-date="{{ post.date }}" href="{{ post.url | prepend: site.url }}">{{ post.title }}</a>
<br>
<span class="date">{{ post.date | date_to_long_string }}</span>,
by {{ post.author }}
</td>
</tr>
{% assign has_items = true %}
{% endif %}
{% endfor %}
{% if has_items == false %}
<tr><td>No known issues.</td></tr>
{% endif %}
</ul>
</section>
</div>
</div>
<script src="/js/install.js"></script>
<script src="/js/new.js"></script>
{% include footer.html %}