mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 19:28:35 +01:00
added alt text to images
This commit is contained in:
parent
ea0586d269
commit
4ec298d2fe
2 changed files with 34 additions and 21 deletions
|
@ -1,19 +1,32 @@
|
||||||
[{
|
[
|
||||||
"value": "CharacterCreator.jpg",
|
{
|
||||||
"text": "Create your own characters with unique personalities and skills and dress them however you like"
|
"value": "CharacterCreator.jpg",
|
||||||
}, {
|
"text": "Create your own characters with unique personalities and skills and dress them however you like",
|
||||||
"value": "BuildMode.jpg",
|
"alt": "A screenshot of the game's character creator, where a brown-haired Tiny called Anya Leslie is selected."
|
||||||
"text": "Build houses and community spaces like parks and cafés and watch households inhabit them"
|
},
|
||||||
}, {
|
{
|
||||||
"value": "Gameplay.jpg",
|
"value": "BuildMode.jpg",
|
||||||
"text": "Control your household and tell your characters what to do, from cooking food to learning complex skills like programming and painting"
|
"text": "Build houses and community spaces like parks and cafés and watch households inhabit them",
|
||||||
}, {
|
"alt": "A screenshot of the game's build mode, where the user is currently placing a double bed in the bedroom of a small house."
|
||||||
"value": "Relationships.jpg",
|
},
|
||||||
"text": "Have your characters interact, build relationships, grow families and live unique lives"
|
{
|
||||||
}, {
|
"value": "Gameplay.jpg",
|
||||||
"value": "Travel.jpg",
|
"text": "Control your household and tell your characters what to do, from cooking food to learning complex skills like programming and painting",
|
||||||
"text": "Share your creations with the community by exporting lots and households from your game"
|
"alt": "A screenshot where a fridge in a house is selected, with options to serve or make food visible. The selected person has long, red hair and is feeling fine."
|
||||||
}, {
|
},
|
||||||
"value": "Modding.png",
|
{
|
||||||
"text": "Create additional content through the game's built-in C# modding API, like <a href=\"https://github.com/ssblur/IttyMod\">Itty</a> by ssblur"
|
"value": "Relationships.jpg",
|
||||||
}]
|
"text": "Have your characters interact, build relationships, grow families and live unique lives",
|
||||||
|
"alt": "A screenshot where the cursor is hovering over a Tiny called Jeremiah Jenson, which the selected Tiny is dating, and has a good relationship with. The relationships tab is also open, showing the selected Tiny's relationships with various Tinies."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"value": "Travel.jpg",
|
||||||
|
"text": "Share your creations with the community by exporting lots and households from your game",
|
||||||
|
"alt": "A screenshot of the camera, zoomed out, over a house in a forested area which is selected, with the options to visit the lot, called Campers' Lane 5, visible."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"value": "Modding.png",
|
||||||
|
"text": "Create additional content through the game's built-in C# modding API, like <a href=\"https://github.com/ssblur/IttyMod\">Itty</a> by ssblur",
|
||||||
|
"alt": "A screenshot of ssblur's mod Itty, with its timeline menu open, showing various messages sent by different Tinies."
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
{% for item in site.data.screenshots %}
|
{% for item in site.data.screenshots %}
|
||||||
<div class="screenshot">
|
<div class="screenshot">
|
||||||
<img src="media/screenshots/{{ item.value }}" width="100%" class="screen">
|
<img src="media/screenshots/{{ item.value }}" alt="{{ item.alt }}" width="100%" class="screen">
|
||||||
<div class="feature feature-{{ forloop.index0 | modulo: 2 }}">
|
<div class="feature feature-{{ forloop.index0 | modulo: 2 }}">
|
||||||
<p>{{ item.text }}</p>
|
<p>{{ item.text }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -15,4 +15,4 @@
|
||||||
<div class="trailer">
|
<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>
|
<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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue