| 1 | <% content_for :meta_head do %> |
| 2 | <%= render('shared/partial_meta_tag', title: @meta_title, description: @meta_description) %> |
| 3 | <% end %> |
| 4 | <% content_for :breadcrumb do %> |
| 5 | <%= render 'shared/partial_breadcrumbs_schema' do %> |
| 6 | { |
| 7 | "@type": "ListItem", |
| 8 | "position": 2, |
| 9 | "item": { |
| 10 | "@id": "<%= users_url %>", |
| 11 | "name": "<%= t("user_profile") %> <%= @user.name %>" |
| 12 | } |
| 13 | } |
| 14 | <% end %> |
| 15 | <% end %> |
| 16 | <main> |
| 17 | <%= render('shared/flash_message', object: flash) %> |
| 18 | <%= render('partial_public_profile_user_information') %> |
| 19 | <%= render('partial_public_profile_friends') %> |
| 20 | <%= render 'shared/partial_breadcrumbs' do %> |
| 21 | <li class="breadcrumb-item"> |
| 22 | <%= link_to( |
| 23 | "@#{@user.username_or_name}", |
| 24 | profile_path(@user.username_or_id) |
| 25 | ) %> |
| 26 | </li> |
| 27 | <% end %> |
| 28 | </main> |