This repository has been archived on 2022-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
wikiufc/app/views/layouts/users.html.haml

13 lines
396 B
Plaintext

- @title = App.title
- @location = capture do
= link_to(App.title, index_url) + "›";
= link_to("Usuários", users_path)
- if @user and @user.id
= "› " + link_to(h(@user.name), user_url(@user))
- @title = @title + " - #{h(@user.display_name)}"
- @left_panel = render('widgets/menu_navigation') + render('widgets/menu_user')
- @content = yield
= render 'layouts/base'