all repos — myprecious @ main

A lightweight web service to backup precious game saves.

myprecious/templates/index.html (view raw)

 1{% extends "base.html" %}
 2{% block title %}myprecious{% endblock %}
 3{% block content %}
 4<p>A simple game saves archive.</p>
 5
 6<table>
 7    {% for game in games %}
 8    <tr onClick="" data-info="{{ game.info }}">
 9        <td>
10            <img src="{{ game.cover }}" style="height: 100px;">
11        </td>
12        <td>
13            <i>{{ game.title }}</i> on <i>{{ game.platform }}</i>
14        </td>
15    </tr>
16    {% endfor %}
17</table>
18{% endblock %}