mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-06-18 06:23:12 +00:00
start working on adding more game info
This commit is contained in:
parent
e6794d42af
commit
9676819871
4 changed files with 32 additions and 18 deletions
|
@ -9,10 +9,26 @@
|
|||
{% block content %}
|
||||
<header style="height: 40vh">
|
||||
<h1>{{ game.name }}</h1>
|
||||
<p>{{ game.developer }}</p>
|
||||
<p>{% for person in game.autors %}{{ person }}{% if not loop.last %},{% endif %}{% endfor %}</p>
|
||||
</header>
|
||||
|
||||
<section class="fill">
|
||||
<h2>Games</h2>
|
||||
<p>Here are some games AAAA</p>
|
||||
<section class="fill" id="Description">
|
||||
<h2>Description</h2>
|
||||
<p>{{ game.description }}</p>
|
||||
</section>
|
||||
|
||||
<section id="Tags">
|
||||
<ul>
|
||||
{% for tag in game.tags %}
|
||||
<li>{{ tag }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section id="Images">
|
||||
{% for image in game.images %}
|
||||
<img src="{{ url_for('static', filename='images/' + image) }}" alt="{{ image.alt }}">
|
||||
{% endfor %}
|
||||
</section>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue