butter-portal/app/templates/index.html

18 lines
701 B
HTML
Raw Normal View History

2026-02-17 08:42:33 +00:00
{% extends "base.html" %}
{% block content %}
<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-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 }}>
<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 %}
</div>
2026-02-17 08:42:33 +00:00
{% endblock %}