layout | title | keywords | sidebar | last_updated | toc | intro |
---|---|---|---|---|---|---|
home |
Home |
homepage |
home_sidebar |
06/Nov/2022 |
true |
Welcome to my website, where I document all the info of my Minecraft creations. In this page you have a summary of my content. Use the sidebar and the top bar to navigate through all the site's pages. |
{% assign sorted_pages = site.pages | sort: 'downloads' | reverse %}
{% for i in (0..2) %}
{% assign pos = i | plus: 1 %}
{% assign page = sorted_pages[i] %}
{% if page.downloads %}
{% if page.tags contains "datapack" %}
{% endif %}
{% endif %}
{% endfor %}
{% if page.thumbnail %}
{% capture var_thumbnail %}
images/{{page.thumbnail}}
{% endcapture %}
{% include image/basic.html full-src=var_thumbnail align='center' style='max-width:100%;' %}
{% elsif page.logo %}
{% capture var_logo %}
images/{{page.logo}}
{% endcapture %}
{% include image/basic.html full-src=var_logo align='center' style='max-width:100%;' nn=true %}
{% endif %}
{% assign sorted_pages = site.pages | sort: 'index' | reverse %}
{% for page in sorted_pages limit: 3 %}
{% if page.index %}
{% if page.tags contains "datapack" %}
{% endif %}
{% endif %}
{% endfor %}
{% if page.thumbnail %}
{% capture var_thumbnail %}
images/{{page.thumbnail}}
{% endcapture %}
{% include image/basic.html full-src=var_thumbnail align='center' style='max-width:100%;' %}
{% elsif page.logo %}
{% capture var_logo %}
images/{{page.logo}}
{% endcapture %}
{% include image/basic.html full-src=var_logo align='center' style='max-width:100%;' nn=true %}
{% endif %}
{% include buttons/basic.html url="datapacks.html" content="Full list of datapacks" %}