-
Notifications
You must be signed in to change notification settings - Fork 135
/
index.html
164 lines (154 loc) · 5.98 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
---
layout: homepage
---
<div class="home-container">
<p>
The Interrupt community comprises engineers, hobbyists, and enthusiasts with a shared passion for hardware and firmware development. We come together to share best practices, problem-solve, collaborate on projects, advance the embedded community, and elevate device reliability engineering (DRE).
</p>
<p>
The Interrupt Community was created and is moderated today by the founders of <a href="https://memfault.com">Memfault</a>.
</p>
<ul class="list-of-content">
<li>
<a href="{{ '/blog' | relative_url }}">
<svg class="svg-icon slack">
<use xlink:href="{% img_url main-icons.svg#blog %}"></use>
</svg>
Blog
</a>
</li>
<li>
<a href="{{ '/contributing' | relative_url }}">
<svg class="svg-icon slack">
<use xlink:href="{% img_url main-icons.svg#contribute %}"></use>
</svg>
Contribute
</a>
</li>
<li>
<a href="https://community.memfault.com/">
<svg class="svg-icon slack">
<use xlink:href="{% img_url main-icons.svg#forum %}"></use>
</svg>
Forums
</a>
</li>
<li>
<a href="https://github.com/memfault/interrupt">
<svg class="svg-icon slack">
<use xlink:href="{% img_url social-icons.svg#github %}"></use>
</svg>
Github
</a>
</li>
<li>
<a href="{{ '/jobs' | relative_url }}">
<svg class="svg-icon slack" viewbox="0 0 9 9">
<use xlink:href="{% img_url main-icons.svg#briefcase %}"></use>
</svg>
Jobs
</a>
</li>
<li>
<a href="{{ '/events' | relative_url }}">
<svg class="svg-icon slack" viewbox="0 0 9 9">
<use xlink:href="{% img_url main-icons.svg#people %}"></use>
</svg>
Events
</a>
</li>
<li>
<a href="https://www.meetup.com/interrupt-memfault-meetup/">
<svg class="svg-icon slack">
<use xlink:href="{% img_url main-icons.svg#meetup %}"></use>
</svg>
Meetup
</a>
</li>
<li>
<a href="https://interrupt-slack.herokuapp.com/">
<svg class="svg-icon slack">
<use xlink:href="{% img_url social-icons.svg#slack %}"></use>
</svg>
Slack
</a>
</li>
<li>
<a href="https://go.memfault.com/interrupt-subscribe">
<svg class="svg-icon slack">
<use xlink:href="{% img_url main-icons.svg#subscribe %}"></use>
</svg>
Subscribe
</a>
</li>
<li>
<a href="{{ 'feed.xml' | absolute_url }}">
<svg class="svg-icon slack">
<use xlink:href="{% img_url social-icons.svg#rss %}"></use>
</svg>
RSS
</a>
</li>
<li>
<a href="{{ '/tags' | relative_url }}">
<svg class="svg-icon slack" viewbox="0 0 448 512">
<use xlink:href="{% img_url main-icons.svg#tag %}"></use>
</svg>
Tags
</a>
</li>
<li>
<a href="https://memfault.com/webinars">
<svg class="svg-icon slack" viewbox="0 0 448 512">
<use xlink:href="{% img_url main-icons.svg#webinar %}"></use>
</svg>
Webinars
</a>
</li>
</ul>
<h2 class="home-header-2">
<a href="{{ '/blog' | relative_url }}">
Latest Blog Posts
</a>
</h2>
<ul id="posts">
{% assign maxPost = 5 %}
{% assign counter = 0 %}
{% assign posts = site.posts | sort:"date" | reverse %}
{% for post in posts %}
<li class="post">
<h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
<div class="by-line">
<time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time>
{% assign author = site.data.authors[post.author] %}
{% assign author_key = post.author %}
{% if author %}
<span>by <a href="{{ '/authors/' | append:author_key | relative_url }}">{{ author.name }}</a></span>
{% endif %}
</div>
<p>{{ post.excerpt }}</p>
</li>
{% assign counter = counter | plus: 1 %}
{% if counter == maxPost %}
{% break %} {% comment %}exit the for loop{% endcomment %}
{% endif %}
{% endfor %}
</ul>
<a href="{{ '/blog' | relative_url }}" class="home-show-more">
View all posts
<img class="chevron-icon" src="{% img_url chevron-right-white.svg %}" />
</a>
<h2 class="home-header-2">
About Memfault
</h2>
<p>
Memfault is the first cloud-based observability platform for connected device debugging, monitoring, and updating, which brings the efficiencies and innovation of software development to hardware processes. Recognizing that any connected device team could benefit from what they were building, François Baldassari, Chris Coleman, and Tyler Hoffman founded Memfault in 2018 with the help of colleagues from Pebble.
<a href="https://memfault.com/signup">
Try Memfault
<svg class="svg-icon slack">
<use xlink:href="{% img_url main-icons.svg#arrow-right %}"></use>
</svg>
</a>
</p>
{% include social-buttons.html %}
</div>