TinyLifeWeb/web/community.html

57 lines
3.4 KiB
HTML
Raw Normal View History

---
layout: default
nav: communitynav.html
title: Tiny Life
summary: A fun simulation game where you mess with people's lives
---
2023-08-12 12:37:06 +02:00
<div class="section">
<div class="community-top">
<h1>💬 Community Showcase</h1>
2023-08-12 13:09:47 +02:00
<p>Ever since Tiny Life released into Early Access, the game's community has been growing steadily, and you all have been absolutely amazing. You've released videos, livestreamed gameplay, created mods, households, lots and other custom content, and you've even drawn fan art of pre-made Tinies! We love community contributions, and so we want to dedicate this section to our community and showcase some of the awesome stuff you've created.</p>
<p>All content on this page abides by the <a href="https://docs.tinylifegame.com/articles/content_policy.html">Tiny Life Content and Community Policy</a>, and you can consider content on this page to be officially endorsed. Nevertheless, please always take care when downloading and installing custom content and mods for Tiny Life.</p>
<p>If you're interested in having your content added to this page, please let us know on <a href="https://link.tinylifegame.com/discordweb">the Discord server</a> or <a href="https://github.com/Ellpeck/TinyLifeWeb/blob/main/web/_data/community-content.json">submit a pull request</a>.</p>
2023-08-12 12:37:06 +02:00
</div>
2023-08-12 12:37:06 +02:00
{% for section in site.data.community-sections %}
<div class="community-section">
<h2 id="{{ section.slug }}">{{ section.name }}</h2>
2023-08-12 13:30:25 +02:00
<p>{{ section.desc }}</p>
2023-08-12 13:14:10 +02:00
{% assign any = false %}
2023-08-12 12:37:06 +02:00
{% for content in site.data.community-content %}
{% if content.section == section.slug %}
2023-08-12 13:30:25 +02:00
<div class="community-content-box">
{% if section.images %}
<img src="/media/community/{{ content.slug }}.png" alt="An image showing off {{ content.name }}" width="100%">
{% endif %}
{% if section.embeds %}
<div class="video-embed">
<iframe src="{{ content.embed }}" title="{{ content.name }} Embed" frameborder="0" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
{% endif %}
<div class="community-content-box-content">
<h4 class="community-title">{{ content.name }}</h4>
<div class="community-author text-muted">Created by {{ content.author }}</div>
<div class="community-desc">{{ content.desc }}</div>
<div>
{% for link in content.links %}
<a href="{{ link[1] }}">{{ link[0] }}</a>
{% unless forloop.last %}
&ndash;
{% endunless %}
{% endfor %}
</div>
</div>
</div>
2023-08-12 13:14:10 +02:00
{% assign any = true %}
2023-08-12 12:37:06 +02:00
{% endif %}
{% endfor %}
2023-08-12 13:14:10 +02:00
{% unless any %}
<em>There's nothing in this section yet.</em>
{% endunless %}
2023-08-12 12:37:06 +02:00
</div>
{% endfor %}
</div>