-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextensions.html
More file actions
35 lines (33 loc) · 881 Bytes
/
extensions.html
File metadata and controls
35 lines (33 loc) · 881 Bytes
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
---
layout: default
title: Extensions
permalink: /extensions/
---
<div>
<h1>Extensions</h1>
<p>
Learn about our Scratch 3.0 Extensions
<a class="hover-underline" href="mailto:cognimates@gmail.com">let us know</a> what you think!
</p>
<p>
Having errors with one of our extensions?
Let us know through our <a class="hover-underline" href="https://goo.gl/forms/oUkrX6x4dQj06zxw2">bug form</a>
and we'll get back to you!
</p>
</div>
<ul class="tiles">
{% for activity in site.data.extensions %}
<li>
<div class="tile">
<a href={{ activity[1].link | relative_url }}>
<img src={{ activity[1].cover_photo | relative_url }} alt="{{ activity[1].name }}" />
<div class="overlay">
{{ activity[1].short_intro }}
<br /><br />
</div>
<span class="tile-name">{{ activity[1].name }}</span>
</a>
</div>
</li>
{% endfor %}
</ul>