about summary refs log tree commit diff
path: root/app/views/layouts/dashboard.html.haml
blob: ea8390bae55c6d003413da089b13520aa613c935 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
- content_for :content do
  .dashboard-wrapper
    .dashboard__sidebar
      .dashboard__top-bar.alternate
         
      .dashboard__current-user
        = link_to account_path(current_user.account) do
          = image_tag current_user.account.avatar.url(:medium), class: 'dashboard__current-user__avatar'
          %strong.dashboard__current-user__display-name= current_user.account.display_name.blank? ? current_user.account.username : current_user.account.display_name
          %span.dashboard__current-user__username= "@#{current_user.account.username}"
      %ul
        %li{ class: active_nav_class(root_path) }
          = link_to root_path do
            = fa_icon 'home'
            Home
        %li{ class: active_nav_class(oauth_authorized_applications_path) }
          = link_to oauth_authorized_applications_path do
            = fa_icon 'shield'
            Authorized apps
    .dashboard__content
      .dashboard__top-bar
        = content_for?(:page_title) ? yield(:page_title) : 'Mastodon'
        %ul
          %li= link_to fa_icon('gear'), edit_registration_path(current_user), title: 'Change password'
          %li= link_to fa_icon('sign-out'), destroy_user_session_path, method: :delete, title: 'Sign out'
      .dashboard__content__content= yield
  .footer
    .domain= Rails.configuration.x.local_domain

= render template: "layouts/application"