TinyLifeWeb/web/_includes/about.html

38 lines
1.7 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.features %}
2024-09-07 12:20:53 +02:00
<div class="feature">
<div class="feature-banner">
<div class="feature-title">
<h2>{{ item.title }}</h2>
</div>
<img src="media/banners/{{ item.value }}" alt="{{ item.alt }}" width="100%">
</div>
2024-09-07 12:20:53 +02:00
<ul>
{% for line in item.text %}
<li>{{ line }}</li>
{% endfor %}
</ul>
2022-01-23 15:58:04 +01:00
</div>
{% endfor %}
2022-03-08 16:23:54 +01:00
2024-09-07 12:20:53 +02:00
<h2 id="trailer">📺 Watch the Trailer</h2>
2023-08-12 13:30:25 +02:00
<div class="video-embed">
2023-08-12 13:51:31 +02:00
<iframe src="https://www.youtube.com/embed/dl4JCzOpnGE" title="Tiny Life Trailer" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
2022-03-08 16:23:54 +01:00
</div>
2024-09-07 12:20:53 +02:00
<h2 id="reviews">🏆 Praise for Tiny Life</h2>
{% for review in site.data.reviews %}
<div class="review">
{% capture quote %}"{{ review.description }}"{% endcapture %}
<blockquote>{{ quote | smartify }}</blockquote>
<span class="text-muted review-author">
{{ review.name }}, <a href="{{ review.link }}">{{ review.website }}</a>
</span>
</div>
{% endfor %}
2022-10-08 12:34:19 +02:00
</div>