diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-12-25 18:36:02 +0000 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-12-25 18:36:02 +0000 |
commit | f94885a58f05864682af5394c1b0c3733d46a305 (patch) | |
tree | 2cabd5c9a2e858b06cd53d2cd518db57a4eaac73 | |
parent | f7d4b4bf6da4bc9d3f00812f0da0c384d4ef7dac (diff) | |
download | cheatdb-f94885a58f05864682af5394c1b0c3733d46a305.tar.xz |
Fix gravatar link being a button
-rw-r--r-- | app/templates/users/user_profile_page.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/templates/users/user_profile_page.html b/app/templates/users/user_profile_page.html index d81d461..46881fd 100644 --- a/app/templates/users/user_profile_page.html +++ b/app/templates/users/user_profile_page.html @@ -22,7 +22,7 @@ <div class="card-body row"> <div class="col-md-2"> {% if user.email %} - <a class="btn btn-primary" href="https://en.gravatar.com/"> + <a href="https://en.gravatar.com/"> {% endif %} <img class="img-responsive user-photo img-thumbnail img-thumbnail-1" src="{{ (user.email or '') | gravatar }}"> {% if user.email %} |