mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-17 17:23:12 +01:00
added reviews section to website
This commit is contained in:
parent
6ea3e9b2e0
commit
cb60ba71fd
3 changed files with 68 additions and 12 deletions
32
web/_data/reviews.json
Normal file
32
web/_data/reviews.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
[
|
||||
{
|
||||
"description": "The best game like The Sims to play right now.",
|
||||
"name": "Lauren Morton",
|
||||
"website": "PC Gamer",
|
||||
"link": "https://www.pcgamer.com/games/life-sim/with-life-by-you-canceled-and-paralives-not-out-until-2025-this-lo-fi-life-sim-is-the-best-game-like-the-sims-to-play-right-now/"
|
||||
},
|
||||
{
|
||||
"description": "A viable alternative for The Sims that captures the simple joy of the life simulator genre.",
|
||||
"name": "Leah J. Williams",
|
||||
"website": "GamesHub",
|
||||
"link": "https://www.gameshub.com/news/features/the-sims-rival-life-simulators-2642288/"
|
||||
},
|
||||
{
|
||||
"description": "You'll be in your nostalgic element with this delightful little indie.",
|
||||
"name": "Katharine Castle",
|
||||
"website": "Rock Paper Shotgun",
|
||||
"link": "https://www.rockpapershotgun.com/our-101-most-anticipated-games-of-2023"
|
||||
},
|
||||
{
|
||||
"description": "An excellent alternative for fans of the genre both in its visual style and more open design.",
|
||||
"name": "Will Nelson",
|
||||
"website": "PCGamesN",
|
||||
"link": "https://www.pcgamesn.com/tiny-life/demo-the-sims-4"
|
||||
},
|
||||
{
|
||||
"description": "I had a really great time playing with this. This very much makes me feel the way that The Sims 1 did.",
|
||||
"name": "Plumbella",
|
||||
"website": "YouTube",
|
||||
"link": "https://www.youtube.com/watch?v=MKYHTuTpTYQ"
|
||||
}
|
||||
]
|
|
@ -4,23 +4,34 @@
|
|||
<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 %}
|
||||
<div class="feature">
|
||||
<div class="feature-banner">
|
||||
<div class="feature-title">
|
||||
<h2>{{ item.title }}</h2>
|
||||
<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>
|
||||
<img src="media/banners/{{ item.value }}" alt="{{ item.alt }}" width="100%">
|
||||
<ul>
|
||||
{% for line in item.text %}
|
||||
<li>{{ line }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
<ul>
|
||||
{% for line in item.text %}
|
||||
<li>{{ line }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
<h2>Watch the Trailer</h2>
|
||||
<h2 id="trailer">📺 Watch the Trailer</h2>
|
||||
<div class="video-embed">
|
||||
<iframe src="https://www.youtube.com/embed/dl4JCzOpnGE" title="Tiny Life Trailer" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||
</div>
|
||||
|
||||
<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 %}
|
||||
</div>
|
||||
|
|
|
@ -190,6 +190,7 @@ a:visited.wide-link {
|
|||
width: 100%;
|
||||
height: 0;
|
||||
padding-bottom: 56.25%;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.video-embed iframe {
|
||||
|
@ -247,6 +248,18 @@ a:visited.wide-link {
|
|||
height: 600px !important;
|
||||
}
|
||||
|
||||
.review {
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.review blockquote {
|
||||
margin-left: 0;
|
||||
margin-bottom: 0.5em;
|
||||
padding-top: 0.5em;
|
||||
padding-bottom: 0.5em;
|
||||
}
|
||||
|
||||
h1 .anchor-heading, h2 .anchor-heading, h3 .anchor-heading, h4 .anchor-heading, h5 .anchor-heading, h6 .anchor-heading {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue