Initial commit

This commit is contained in:
Ana Custura 2026-02-17 08:42:33 +00:00
commit c0b4ca1021
21 changed files with 677 additions and 0 deletions

17
app/templates/index.html Normal file
View file

@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title is-large butter-title">Hi, welcome to the {{get_setting('butterbox_name')}}.</h1>
<p class="subtitle butter-title"> View and download the information you want from this offline box.</p>
<div class="grid">
{% for service in services %}
<a class="cell button is-large is-responsive butter-service" href={{ service.url }}>
<div class="butter-service__content"> {{ service.name }} <br>
<img class="image is-64x64 butter-service__image" src={{ service.image }}>
</div>
</a>
{% endfor %}
</div>
{% endblock %}