Is there a way to determine whether the current user is the admin of the blog? Something like
{Block:Owner}
This is your blog. Click here to update the theme settings.
{/Block:Owner}
Even something via javascript/API would be helpful. I couldn't find anything in the theme documentation
I found a way, but it's not completely reliable and it depends on the language and possibly the OS.
The Tumblr controls bar's size varies in the 3 possible situations:
So we can sort of figure out if the user is logged in with this code:
With
tolerance
we can specify a range of values that can still be considered acceptable, so 195x28 can still work. This code doesn't work on password-protected blogs since they don't show that bar.This could be improved further by making it async with promises, so you can avoid that "not yet ready" state.