diff --git a/_data/edu.yml b/_data/edu.yml new file mode 100644 index 0000000..a3a12ec --- /dev/null +++ b/_data/edu.yml @@ -0,0 +1,85 @@ +why: +- title: Free of Charge + para: Minetest is developed by an + international network of volunteer developers. + You don't have to pay a license fee. + +- title: Easy Scripting + para: Minetest is not a game itself, but instead provides a Lua API which is used to create games and mods. + This makes creation and customisation super easy. + +- title: Customisable without Limits + para: You are not restricted by any EULA, and have full access to the source code. + Minetest is available under the LGPLv2.1+ license. + +- title: Runs well on old hardware + para: Minetest is written in a computer language that makes more efficient use of hardware, + allowing more schools to be able to experience interactive virtual learning. + +- title: Independent + para: Minetest is not associated with any company or commercial entity, which can make it + more suitable for adoption in organisations where this is a problem. + +- title: Friendly Community + para: You can find help with any problems on our forums or IRC channels. + + +featured: +- title: Craft the Web + author: CERN + tag: Unreleased + img: ctw.png + para: Learn what makes the Web function, and about the ideas and major inventions that paved its creation. + url: https://forum.minetest.net/viewtopic.php?t=22871 + +- title: Framinetest + author: Framasoft + lang: fr + img: framinetest.png + para: An educational server, with geology, biology, and historical reconstruction to imagine your world! + url: https://framinetest.org + +- title: QiskitBlocks + author: James Weaver + img: qiskitblocks.png + para: Teaching Quantum Computing using Qiskit in a block world. + url: http://qiskitblocks.org + +# - title: Environmental Survival +# author: IMVEC +# img: imvec.png +# para: Teaches about polluting events, and gives the opportunity to imagine and build solutions. +# url: https://imvec.tech/kids/ + + +resources: +- title: Edu Wiki + classes: is-primary + author: Various + para: There's a section of our wiki dedicated for education-related help. + url: https://wiki.minetest.net/MinetestEDU + +- title: List of Mods for Education + author: Various + para: We have a large collection of educational mods, all of which are free and open source. + url: https://wiki.minetest.net/Mods:Learning + +- title: Minetest Modding Book + author: rubenwardy + para: Learn how to use Minetest's Lua API to create mods and games. + url: https://rubenwardy.com/minetest_modding_book/ + +- title: Google CTF Mesecons Challenge + author: Google + para: I've stumbled upon this weird Minetest map, can you make sense out of it? + url: https://capturetheflag.withgoogle.com/#challenges/hardware-minetest + +- title: Mining for Education + author: Paul Brown, OS Mag + para: An article explaining why you should use Minetest for education, and a guide in doing so. + url: http://www.ocsmag.com/2016/04/04/mining-for-education/ + +- title: Learning with Minetest + author: Teacher Squeaks + para: A 3-part post-mortem based on the author's experience of using Minetest in a pre-school. + url: http://teachersqueaks.blogspot.co.za/2016/08/minewhat-rolling-out-minetest-in-pre.html diff --git a/_includes/footer.html b/_includes/footer.html index 8a411f4..5315128 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -6,10 +6,10 @@ diff --git a/_includes/header.html b/_includes/header.html index 68f9509..96c9e55 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -27,6 +27,7 @@ Customize News Get Involved + Education diff --git a/_sass/_base.scss b/_sass/_base.scss index acd538e..a03a53b 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -20,7 +20,7 @@ } } -a:not(.navbar-item, .no-underline) { +a:not(.navbar-item, .no-underline ,.card) { border-bottom: 1px solid transparentize($primary, 0.75); &:hover { @@ -37,7 +37,7 @@ a:not(.navbar-item, .no-underline) { cursor: pointer; &:hover { - transform: scale(1.1, 1.1); + transform: scale(1.05, 1.05); z-index: 2; } } @@ -46,7 +46,7 @@ a:not(.navbar-item, .no-underline) { font-weight: $weight-semibold; } -.section-title, +.section-title, .main-title, .section-title:not(:last-child) { color: desaturate($primary, 17%); font-size: $size-2 * 1.05; @@ -54,6 +54,10 @@ a:not(.navbar-item, .no-underline) { margin-bottom: 3rem; } +.main-title { + margin-top: 3rem; +} + .iconlist { .image { width: 100px; diff --git a/assets/icons/lang-fr.png b/assets/icons/lang-fr.png new file mode 100644 index 0000000..646fc5c Binary files /dev/null and b/assets/icons/lang-fr.png differ diff --git a/education.html b/education.html new file mode 100644 index 0000000..137f2dc --- /dev/null +++ b/education.html @@ -0,0 +1,88 @@ +--- +title: Minetest for Education +layout: default +--- + +

Minetest for Education

+ +
+
+

Why Minetest?

+
We asked some educators why, and here's what they said.
+ +
+ {% for point in site.data.edu.why %} +
+

{{ point.title }}

+

+ {{ point.para }} +

+
+ {% endfor %} +
+
+
+ + +
+
+

Featured Projects

+
Existing educational projects that use Minetest.
+ + +
+
+ +
+
+

Resources

+
Leverage the community.
+ +
+ {% for point in site.data.edu.resources %} + +
+
+

{{ point.title }}

+
{{ point.author }}
+

+ {{ point.para }} +

+
+
+
+ {% endfor %} +
+ +
+ Your project here! + Contribute back to the community by making your learning resources publicly available. +
+
+
diff --git a/media/edu/ctw.png b/media/edu/ctw.png new file mode 100644 index 0000000..378c892 Binary files /dev/null and b/media/edu/ctw.png differ diff --git a/media/edu/framinetest.png b/media/edu/framinetest.png new file mode 100644 index 0000000..6fbb67d Binary files /dev/null and b/media/edu/framinetest.png differ diff --git a/media/edu/imvec.png b/media/edu/imvec.png new file mode 100644 index 0000000..3c26a6a Binary files /dev/null and b/media/edu/imvec.png differ diff --git a/media/edu/qiskitblocks.png b/media/edu/qiskitblocks.png new file mode 100644 index 0000000..454d84d Binary files /dev/null and b/media/edu/qiskitblocks.png differ