2021-05-31 03:20:23 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title>{{ title }} • WorldEditAdditions</title>
<link rel="stylesheet" href="/theme.css" />
</head>
<body>
2021-06-20 22:48:30 +02:00
<nav class="shadow-bottom">
2021-05-31 03:20:23 +02:00
<h1>
2021-06-20 23:55:28 +02:00
<img src="{% image_urlpass '../worldeditadditions.png' %}" alt="" class="icon logo" />
2021-05-31 03:20:23 +02:00
WorldEditAdditions
</h1>
<ul>
{% for navitem in collections.navigable %}
<li {% if page.url == navitem.url %}aria-current="page"{% endif %}>
<a href="{{ navitem.url }}" class="nav">{{ navitem.data.title }}</a>
</li>
{% endfor %}
2021-06-14 03:25:45 +02:00
<li><a href="https://github.com/sbrl/Minetest-WorldEditAdditions/" class="nav image"><img src="{% image_urlpass 'images/github.svg' %}" alt="GitHub" title="GitHub" /></a></li>
2021-05-31 03:20:23 +02:00
</ul>
</nav>
2021-06-19 19:20:05 +02:00
2021-05-31 03:20:23 +02:00
{{ content | safe }}
2021-06-14 02:36:13 +02:00
<footer class="shadow-top">
2021-06-20 22:48:30 +02:00
<p>WorldEditAdditions built with ❤️ by these awesome people:</p>
<ul class="contributor-list">
{% for contributor in contributors %}
<li><a href="{{ contributor.profile_url }}">
<img class="icon large" src="{{ contributor.avatar_url }}" alt="{{ contributor.name }}" />
<span>{{ contributor.name }}</span>
</a></li>
{% endfor %}
</ul>
2021-06-20 23:16:27 +02:00
<p>Tech: <a href="https://www.11ty.dev/">Eleventy</a> (this website), <a href="https://www.heropatterns.com/">Hero Patterns</a> (background patterns), <a href="https://github.com/shssoichiro/oxipng">Oxipng</a> (PNG image compression), <a href="https://www.minetest.net/">Minetest</a> (of course)</p>
2021-06-20 22:48:30 +02:00
<p>Licensed under the <a href="https://www.mozilla.org/en-US/MPL/2.0/">Mozilla Public Licence 2.0</a> (<a href="https://tldrlegal.com/license/mozilla-public-license-2.0-(mpl-2)">tldr</a>)</p>
2021-05-31 03:20:23 +02:00
</footer>
</body>
</html>