hubfeenix.fi/app/views/profiles/index.html.haml

15 lines
543 B
Plaintext
Raw Normal View History

2023-01-15 23:17:22 +01:00
= paginate @profiles
2023-01-15 13:52:40 +01:00
.flex.justify-center
.grid.grid-cols-4
2023-01-15 23:17:22 +01:00
- @profiles.each do |profile|
2023-01-15 13:52:40 +01:00
.fex.flex-col.overflow-hidden.rounded-lg.border.border-gray-100.shadow-sm.m-10
2023-01-15 23:17:22 +01:00
=link_to profile do
= image_for( profile , class: "h-60 w-full object-cover")
2023-01-15 13:59:06 +01:00
%h3.py-5.text-2xl.bg-gray-100.text-black.font-bold.text-center
2023-01-15 23:17:22 +01:00
= profile.name
2023-01-15 13:52:40 +01:00
%div.h-full
.p-5.text-center
.m-2.text-sm.leading-relaxed.line-clamp-3{ prose_classes }
2023-01-15 23:17:22 +01:00
= shorten markdown(profile.bio)