mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
42 lines
1.5 KiB
HTML
42 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}
|
|
{{ _("Home") }}
|
|
{% endblock %}
|
|
{% block main %}
|
|
|
|
<div class="mx-auto w-full text-center p-8">
|
|
<img alt="YunoHost logo" src="{{ url_for('static', filename='ynh_logo_black.svg') }}" class="w-32 mx-auto">
|
|
<h1 class="text-2xl font-bold text-gray-900">
|
|
{{ _("Application Store") }}
|
|
</h1>
|
|
</div>
|
|
|
|
<div class="grid grid-cols-1 gap-4 sm:grid-cols-2 md:grid-cols-3 max-w-screen-lg mx-auto pt-5">
|
|
<div class="text-center border rounded-lg h-32 mx-3 sm:mx-0">
|
|
<a
|
|
href="{{ url_for('browse_catalog') }}"
|
|
class="h-full relative block overflow-hidden hover:bg-gray-200 pt-12"
|
|
>
|
|
<h2 class="text-md font-bold text-gray-900">
|
|
{{ _("Browse all applications") }}
|
|
</h2>
|
|
</a>
|
|
</div>
|
|
{% for id, category in catalog['categories'].items() %}
|
|
<div class="text-center border rounded-lg h-32 mx-3 sm:mx-0">
|
|
<a
|
|
href="{{ url_for('browse_catalog', category=id) }}"
|
|
class="h-full relative block overflow-hidden hover:bg-gray-200 pt-10"
|
|
>
|
|
<h2 class="text-md font-bold text-gray-900">
|
|
<i class="fa fa-{{ category['icon'] }}" aria-hidden="true"></i>
|
|
{{ category['title']|localize }}
|
|
</h2>
|
|
<p class="mx-auto max-w-[40ch] text-xs text-gray-500">
|
|
{{ category['description']|localize }}
|
|
</p>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|