TelegramIndex-Fork/app/templates/home.html

21 lines
771 B
HTML
Raw Normal View History

2020-08-12 12:39:29 +02:00
{% include 'header.html' %}
2020-09-20 18:38:52 +02:00
2021-05-22 16:00:08 +02:00
<h1 class=" my-2 text-2xl text-center font-bold text-green-400">
Available Sources
</h1>
2020-09-20 18:38:52 +02:00
2021-05-22 16:00:08 +02:00
<div class="mx-auto my-2 p-2 w-full">
<div class="block p-4 md:flex md:flex-wrap md:justify-items-center w-full text-center break-words">
{% for chat in chats %}
<a title="{{chat.name}}" href="/{{chat.page_id}}"
class="mx-auto flex flex-col justify-items-center w-2/3 min-h-full md:w-2/5 lg:w-1/4 rounded my-2 p-2 shadow-md hover:shadow-lg hover:border hover:border-blue-300 hover:bg-blue-100">
2020-09-20 18:38:52 +02:00
2021-05-22 16:00:08 +02:00
<img src="/{{chat.page_id}}/logo?big=1" class="w-full rounded-full ">
<div class="p-4 rounded">{{chat.name}}</div>
2020-09-20 18:38:52 +02:00
2021-05-22 16:00:08 +02:00
</a>
{% endfor %}
2020-08-12 12:39:29 +02:00
</div>
2021-05-22 16:00:08 +02:00
</div>
2020-08-12 12:39:29 +02:00
2021-05-22 16:00:08 +02:00
{% include 'footer.html' %}