TinyLifeWeb/web/_includes/roadmap.html

37 lines
1.3 KiB
HTML
Raw Normal View History

2022-05-21 15:23:16 +02:00
<div class="section">
<span id="roadmap"></span>
<h1>Roadmap</h1>
<p>
There's a lot of stuff planned for the game! All of the stuff on this list will be part of free updates in the future, provided that you buy the game once it's purchaseable. Right now, the game is still in public beta, so everything is free!<br>
<span class="text-muted">This list is not exhaustive! There are a lot of planned and work-in-progress featuresd that we want to keep secret for now.</span>
</p>
<div class="roadmap">
{% assign dir = "left" %}
{% for item in site.data.roadmap %}
<div class="roadmap-entry roadmap-entry-{{ dir }}{% if item.important %} roadmap-entry-important{% endif %}">
<h4><span>{{ item.name }}</span></h4>
{% if item.important %}
<hr>
{% endif %}
<p>
{{ item.desc }}
{% if item.stage %}
<br><span class="text-muted">{{ item.stage }}</span>
{% endif %}
</p>
</div>
{%- if item.important != true -%}
{%- if dir == "right" -%}
{%- assign dir = "left" -%}
{%- else -%}
{%- assign dir = "right" -%}
{%- endif -%}
{%- endif -%}
{% endfor %}
</div>
</div>