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

14
code/html/index.jinja Normal file
View File

@ -0,0 +1,14 @@
{% extends "base.jinja" %}
{% block content %}
<section class="section">
<div class="container">
<h1 class="title">
Open source games list (OSGL)
</h1>
<p class="subtitle">
Contains information about {{ index['number_games'] }} open source games.
</p>
</div>
</section>
{% endblock %}