Fix issues with gallery + readd MTG + add figcaptions
@ -19,11 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
|
|
||||||
Screenshots from:
|
|
||||||
- RPG16 texture pack (Hugues Ross)
|
|
||||||
- Soothing32 (Zughy)
|
|
||||||
- i3 (Jean-Patrick Guerrero)
|
|
||||||
- Mineclone2 (Wuzzy)
|
|
||||||
- Steampunk Blimp (APercy)
|
|
||||||
- Animalia (ElCeejo)
|
|
||||||
|
13
README.md
@ -39,5 +39,16 @@ Internet Explorer isn't supported.
|
|||||||
Copyright © 2015-2020 Hugo Locurcio and contributors
|
Copyright © 2015-2020 Hugo Locurcio and contributors
|
||||||
|
|
||||||
Unless otherwise specified, code is licensed under the MIT license.
|
Unless otherwise specified, code is licensed under the MIT license.
|
||||||
Media and content are licensed under
|
Media (except gallery) and content are licensed under
|
||||||
[CC BY-SA 3.0 Unported](https://creativecommons.org/licenses/by-sa/3.0/).
|
[CC BY-SA 3.0 Unported](https://creativecommons.org/licenses/by-sa/3.0/).
|
||||||
|
|
||||||
|
Gallery screenshots are by various authors and depict various content
|
||||||
|
|
||||||
|
- 1: Minetest Game
|
||||||
|
- 2: Soothing32 (Zughy)
|
||||||
|
- 3: i3 (Jean-Patrick Guerrero)
|
||||||
|
- 4: Mineclone2 (Wuzzy)
|
||||||
|
- 5: Steampunk Blimp (APercy)
|
||||||
|
- 6: Animalia (ElCeejo)
|
||||||
|
- 7: RPG16 texture pack (Hugues Ross)
|
||||||
|
- 8: Minetest Game
|
||||||
|
@ -1,17 +1,23 @@
|
|||||||
- image: /media/gallery/1.jpg
|
- image: /media/gallery/1.jpg
|
||||||
title: A tranquil bay with grass and trees
|
title: A castle in Minetest Game, the default game
|
||||||
|
|
||||||
- image: /media/gallery/2.jpg
|
- image: /media/gallery/2.jpg
|
||||||
title: South pacific old growth forest
|
title: "[Soothing32](https://content.minetest.net/packages/Zughy/soothing32/) texture pack"
|
||||||
|
|
||||||
- image: /media/gallery/3.jpg
|
- image: /media/gallery/3.jpg
|
||||||
title: Castles in a large multiplayer server
|
title: "Customized inventory screen from the [i3](https://content.minetest.net/packages/jp/i3/) mod"
|
||||||
|
|
||||||
- image: /media/gallery/4.jpg
|
- image: /media/gallery/4.jpg
|
||||||
title: Sunset over an underwater forest
|
title: "[Mineclone2](https://content.minetest.net/packages/Wuzzy/mineclone2/) game"
|
||||||
|
|
||||||
- image: /media/gallery/5.jpg
|
- image: /media/gallery/5.jpg
|
||||||
title: Cave with a dungeon entrance
|
title: "[Steampunk Blimp](https://content.minetest.net/packages/apercy/steampunk_blimp/) mod for Minetest Game"
|
||||||
|
|
||||||
- image: /media/gallery/6.jpg
|
- image: /media/gallery/6.jpg
|
||||||
title: Underground cavern with flowing lava
|
title: "[Animalia](https://content.minetest.net/packages/ElCeejo/animalia/) mod"
|
||||||
|
|
||||||
|
- image: /media/gallery/7.jpg
|
||||||
|
title: "[RPG-16](https://content.minetest.net/packages/Hugues%20Ross/rpg16/) texture pack"
|
||||||
|
|
||||||
|
- image: /media/gallery/8.jpg
|
||||||
|
title: An underwater jungle in Minetest Game
|
||||||
|
@ -62,7 +62,8 @@
|
|||||||
<div class="footer-copyright">
|
<div class="footer-copyright">
|
||||||
© 2015-{{ site.time | date: '%Y' }} The Minetest Team.
|
© 2015-{{ site.time | date: '%Y' }} The Minetest Team.
|
||||||
<a href="https://github.com/minetest/minetest.github.io">Source</a><br />
|
<a href="https://github.com/minetest/minetest.github.io">Source</a><br />
|
||||||
MIT for code, CC-BY-SA 3.0 for media and content.
|
MIT for code, CC-BY-SA 3.0 for content, media under
|
||||||
|
<a href="https://github.com/minetest/minetest.github.io/#license">various licenses</a>.
|
||||||
Font Awesome icons under <a href="https://fontawesome.com/license">CC-BY 4.0</a>.
|
Font Awesome icons under <a href="https://fontawesome.com/license">CC-BY 4.0</a>.
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
16
index.html
@ -80,21 +80,17 @@ redirect_from:
|
|||||||
{% endcomment %}
|
{% endcomment %}
|
||||||
|
|
||||||
{% for image in site.data.gallery %}
|
{% for image in site.data.gallery %}
|
||||||
<div class="column is-6">
|
<figure class="column is-half">
|
||||||
<div class="card">
|
<a class="image is-16by9" href="{{ image.image | relative_url }}">
|
||||||
<div class="card-image">
|
|
||||||
<figure class="image is-16by9">
|
|
||||||
<a href="{{ image.image | relative_url }}">
|
|
||||||
<img
|
<img
|
||||||
style="background-color: #ccc"
|
style="background-color: #ccc"
|
||||||
src="{{ image.image | replace: ".", "-thumb." | relative_url }}"
|
src="{{ image.image | replace: ".", "-thumb." | relative_url }}"
|
||||||
alt="{{ image.title }}"
|
alt="{{ image.title }}">
|
||||||
>
|
|
||||||
</a>
|
</a>
|
||||||
|
{% if image.title %}
|
||||||
|
<figcaption>{{ image.title | markdownify }}</figcaption>
|
||||||
|
{% endif %}
|
||||||
</figure>
|
</figure>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Before Width: | Height: | Size: 249 KiB After Width: | Height: | Size: 101 KiB |
Before Width: | Height: | Size: 850 KiB After Width: | Height: | Size: 430 KiB |
Before Width: | Height: | Size: 267 KiB After Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 665 KiB After Width: | Height: | Size: 117 KiB |
Before Width: | Height: | Size: 382 KiB After Width: | Height: | Size: 90 KiB |
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 317 KiB |
BIN
media/gallery/7-thumb.jpg
Normal file
After Width: | Height: | Size: 249 KiB |
BIN
media/gallery/7.jpg
Normal file
After Width: | Height: | Size: 850 KiB |
BIN
media/gallery/8-thumb.jpg
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
media/gallery/8.jpg
Normal file
After Width: | Height: | Size: 133 KiB |