TinyLifeWeb/web/_includes/about.html

19 lines
1 KiB
HTML
Raw Normal View History

2022-01-23 15:58:04 +01:00
<div class="section">
2022-05-31 22:03:33 +02:00
<h1 id="about">🏡 About Tiny Life</h1>
2022-12-19 14:50:18 +01:00
<p>Tiny Life is a fun simulation game that aims to capture the essence of games like The Sims series, but in an isometric pixelart style.</p>
2022-01-23 15:58:04 +01:00
<p>In the game, you control a set of people that live together in a household. You take care of their daily needs, build their skills, forge new relationships... or just mess up their entire life in whatever way you can think of!</p>
{% for item in site.data.screenshots %}
<div class="screenshot">
2022-10-08 12:34:19 +02:00
<img src="media/screenshots/{{ item.value }}" alt="{{ item.alt }}" width="100%" class="screen">
2022-01-23 15:58:04 +01:00
<div class="feature feature-{{ forloop.index0 | modulo: 2 }}">
<p>{{ item.text }}</p>
</div>
</div>
{% endfor %}
2022-03-08 16:23:54 +01:00
<div class="trailer">
<iframe src="https://www.youtube.com/embed/iw-D7queVUI" title="Tiny Life Trailer" frameborder="0" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
2022-10-08 12:34:19 +02:00
</div>