forked from luanti-org/luanti-org.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheducation.html
94 lines (85 loc) · 2.67 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
---
title: Minetest for Education
layout: default
---
<h1 class="title main-title">Minetest for Education</h1>
<section class="section">
<div class="container">
<h2 id="why" class="title">Why Minetest?</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 }}
</p>
</div>
{% endfor %}
</div>
<p class="has-text-centered footnote">
<small>
The above is based on the
<a href="https://web.archive.org/web/20221218200032/https://twitter.com/MinetestProject/status/1147812428647936001">responses</a>
of educators using Minetest.
</small>
</p>
</div>
</section>
<section id="projects" class="section" style="background-color: #f0f0f0;">
<div class="container">
<h2 class="title">Projects</h2>
<div class="columns is-multiline">
{% for point in site.data.edu.featured %}
<a class="column is-one-third hover-enlarge" href="{{ point.url }}" rel="nofollow">
<div class="card">
<div class="card-image">
<figure class="image is-16by9">
<img src="/media/edu/{{ point.img }}" style="object-fit: cover;" alt="screenshot">
</figure>
</div>
<div class="card-content">
<h2 class="title is-4">{{ point.title }}
{% if point.tag %}
<span class="tag is-rounded is-warning">{{ point.tag }}</span>
{% endif %}
{% for lang in point.lang %}
<img class="is-pulled-right" src="/assets/icons/lang-{{ lang }}.png" alt="{{ lang }}">
{% endfor %}
</h2>
<h6 class="subtitle is-6">{{ point.author }}</h6>
<p>
{{ point.para }}
</p>
</div>
</div>
</a>
{% endfor %}
</div>
</div>
</section>
<section class="section">
<div class="container">
<h2 id="resources" class="title">Resources</h2>
<div class="columns is-multiline">
{% for point in site.data.edu.resources %}
<a class="column is-one-third hover-enlarge" href="{{ point.url }}" rel="nofollow">
<div class="card {{ point.classes }}">
<div class="card-content">
<h2 class="title is-4">{{ point.title }}</h2>
<h6 class="subtitle is-6">{{ point.author }}</h6>
<p>
{{ point.para }}
</p>
</div>
</div>
</a>
{% endfor %}
</div>
<div class="notification">
<b>Your project here!</b>
Contribute back to the community by 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>.
</div>
</div>
</section>