mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
40 lines
1.4 KiB
HTML
40 lines
1.4 KiB
HTML
{% extends "base.html" %}
|
|
{% block main %}
|
|
{% set locale = 'en' %}
|
|
|
|
<div class="mx-auto w-full text-center p-8">
|
|
<img src="https://raw.githubusercontent.com/YunoHost/doc/master/images/ynh_logo_black.svg" class="w-32 mx-auto" />
|
|
<h2 class="text-2xl font-bold text-gray-900">
|
|
Application Store
|
|
</h2>
|
|
</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">
|
|
<a
|
|
href="{{ url_for('browse_catalog') }}"
|
|
class="h-full relative block overflow-hidden hover:bg-gray-200 pt-12"
|
|
>
|
|
<h3 class="text-md font-bold text-gray-900">
|
|
Browse all applications
|
|
</h3>
|
|
</a>
|
|
</div>
|
|
{% for id, category in catalog['categories'].items() %}
|
|
<div class="text-center border rounded-lg h-32">
|
|
<a
|
|
href="{{ url_for('browse_catalog', category_filter=id) }}"
|
|
class="h-full relative block overflow-hidden hover:bg-gray-200 pt-10"
|
|
>
|
|
<h3 class="text-md font-bold text-gray-900">
|
|
<i class="fa fa-{{ category['icon'] }}" aria-hidden="true"></i>
|
|
{{ category['title'][locale] }}
|
|
</h3>
|
|
<p class="mx-auto max-w-[40ch] text-xs text-gray-500">
|
|
{{ category['description'][locale] }}
|
|
</p>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|