-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy patheducation.html
115 lines (105 loc) · 3.31 KB
/
education.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
---
title: Luanti for Education
description: Reasons and resources for using Luanti in education
layout: default
---
<h1 class="title main-title">{{ page.title }}</h1>
<section class="section">
<div class="container">
<h2 id="why" class="title">Why Luanti?</h2>
<div class="columns is-multiline">
{% for point in site.data.edu.why %}
<div class="column is-one-third">
<h3 class="title is-4">{{ point.title }}</h3>
<p>
{{ point.para | markdownify }}
</p>
</div>
{% endfor %}
</div>
</div>
</section>
<section id="projects" class="section card-container">
<div class="container">
<h2 class="title">Projects</h2>
<article id="map" class="card is-clipped mb-5">
<h3 class="is-sr-only">Projects map</h3>
<iframe width="100%" height="450px" frameborder="0" allowfullscreen=""
allow="geolocation" class="is-block" title="Projects map"
src="{{ site.data.edu.projects_map }}"></iframe>
</article>
<div class="columns is-multiline">
{% for point in site.data.edu.projects %}
{% include edu_card.html item=point %}
{% endfor %}
</div>
</div>
</section>
<section class="section card-container">
<div class="container">
<h2 id="resources" class="title is-3">Resources</h2>
<div class="columns is-multiline">
{% for point in site.data.edu.resources %}
{% include edu_card.html item=point %}
{% endfor %}
</div>
</div>
</section>
<section class="section">
<div class="container">
<h2 id="get-involved" class="title is-3">Get Involved</h2>
<div class="columns">
<article class="column is-half">
<h2 class="title is-4">Luanti community</h2>
<p class="my-4">
Get involved with the wider Luanti community by joining one
of the official social platforms.
</p>
<p>
<a class="button is-primary" href="/get-involved/">
Get Involved
</a>
</p>
</article>
<article class="column is-half">
<h2 class="title is-4">Luanti Edu Discord (unofficial)</h2>
<p class="my-4">
There's an educator-led Discord for the discussion of Luanti in
education.
</p>
<p>
<a class="button is-primary" href="https://discord.gg/hUs9xT634S">
Join the Discord
</a>
</p>
</article>
</div>
</div>
</section>
<section class="section">
<div class="container">
<h2 id="leaflet" class="title">Leaflet</h2>
<p class="my-4">
Need a print version of this page? See the "Minetest in Education"
leaflet.
</p>
<p>
<a class="button is-primary"
href="https://gitlab.com/rubenwardy/fosdem24/-/tree/main/edu_leaflet?ref_type=heads">
"Minetest in Education" leaflet
</a>
</p>
</div>
</section>
<section class="section">
<div class="container">
<h2 id="resources" class="title">Working on an edu project?</h2>
<p>
Contribute back to the community by writing about your project
and/or making your learning resources publicly available. Then,
<a href="https://github.com/minetest/minetest.github.io/issues/new">
create an issue</a> or
<a href="https://rubenwardy.com/contact/">contact rubenwardy</a>.
</p>
</div>
</section>