2026-02-17 08:42:33 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2026-03-24 12:20:41 +00:00
|
|
|
<div class="block"><h1 class="title is-large butter-title">Welcome.</h1></div>
|
|
|
|
|
<div class="block"><p class="subtitle butter-title"> View and download the information you want from this offline box.</p></div>
|
2026-02-17 15:05:59 +00:00
|
|
|
|
2026-03-24 12:20:41 +00:00
|
|
|
<div class="block grid">
|
2026-02-17 08:42:33 +00:00
|
|
|
{% for service in services %}
|
|
|
|
|
<a class="cell button is-large is-responsive butter-service" href={{ service.url }}>
|
2026-03-24 12:39:30 +00:00
|
|
|
<div class="butter-service__content"> <p style="text-wrap: wrap;">{{ service.name }}</p>
|
2026-02-17 08:42:33 +00:00
|
|
|
<img class="image is-64x64 butter-service__image" src={{ service.image }}>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
{% endfor %}
|
2026-02-17 15:05:59 +00:00
|
|
|
</div>
|
|
|
|
|
|
2026-02-17 08:42:33 +00:00
|
|
|
{% endblock %}
|