Plugin to display your Gravatar hovercard in the sidebar of your Octopress site. The "hovering" portion of the hovercard is not currently implemented.
Make sure you have filled out your Gravatar profile for information to show up in the cool card.
Every time you change your profile, you will have to regenerate your blog to update the hovercard. This may change in future development.
Live example at http://blog.afontaine.ca
- Copy
gravatar.html
to your_includes/custom/asides
directory. - Copy
gravatar.rb
to yourplugins
directory. - Update your
_config.yml
file to include agravatar_email
variable. Example below which is also in the provided_config.yml
file:
# Gravatar
gravatar_email: youraddress@example.com
- Add
gravatar.html
to yourdefault_asides
variable in the_config.yml
settings file. Example:
default_asides: [custom/asides/gravatar.html, custom/asides/about.html, ...]