mirror of
https://gitlab.com/octospacc/TelegramIndex-Fork.git
synced 2025-02-18 04:20:51 +01:00
20 lines
825 B
HTML
20 lines
825 B
HTML
{% include 'header.html' %}
|
|
|
|
<h1 class=" my-2 text-2xl text-center font-bold text-green-400">
|
|
Available Sources
|
|
</h1>
|
|
<div class="mx-auto my-2 p-2 w-full">
|
|
<div class="block p-4 md:flex md:flex-wrap md:justify-center w-full text-center break-words">
|
|
{% for chat in chats %}
|
|
<a title="{{chat.name}}" href="/{{chat.id}}" class="flex flex-col justify-around w-full min-h-full md:w-2/5 lg:w-1/4 rounded my-2 md:mx-1 shadow-md hover:shadow-lg hover:border-blue-300 hover:bg-blue-100">
|
|
|
|
<img src="/{{chat.id}}/logo?big=1" class="w-full rounded-full ">
|
|
<div class="p-4 rounded">{{chat.name}}</div>
|
|
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
{% include 'footer.html' %}
|