Skip to content
Snippets Groups Projects
Unverified Commit 9b9e96ea authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Add "Edit profile" link to public profile page, increase bottom padding (#7754)

parent 0c3ce410
Branches
No related tags found
No related merge requests found
.footer {
text-align: center;
margin-top: 30px;
padding-bottom: 60px;
font-size: 12px;
color: $darker-text-color;
......
......@@ -15,6 +15,11 @@
= link_to (account.local? ? account_follow_path(account) : authorize_follow_path(acct: account.acct)), data: { method: :post }, class: 'icon-button' do
= fa_icon 'user-plus'
= t('accounts.follow')
- elsif user_signed_in? && current_account.id == account.id
.controls
= link_to settings_profile_url, class: 'icon-button' do
= fa_icon 'pencil'
= t('settings.edit_profile')
- elsif !user_signed_in?
.controls
.remote-follow
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment