website with jinja

This commit is contained in:
Trilarion
2020-09-16 15:09:45 +02:00
parent 60f9523906
commit 7eacd2da44
26 changed files with 547 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
{% extends "base.jinja" %}
{% block content %}
<section class="section">
<div class="container">
<h1>Inspirations ({{ letter.capitalize() }})</h1>
{% for developer in developers %}
<p>
{{ developer['Name'] }}<br>
Games: {{ developer['Games']|join(', ') }}
</p>
{% endfor %}
</div>
</section>
{% endblock %}