Integrate Gravatar into your Play application.
Install the gravatar module from the modules repository:
play install gravatar
After installing the module, add the following to your application.conf
to enable it:
module.gravatar=${play.path}/modules/gravatar
Gravatar module
After installation you can use gravatar.img tag in your templates to generate an html img tag with the correct url for the email provided:
#{gravatar.img 'john@example.org'/}
renders to:
<img src="http://www.gravatar.com/avatar/08aff750c4586c34375a0ebd987c1a7e"></img>
Or you can use gravatar.url to generate a String with the correct url:
#{gravatar.url 'john@example.org'/}
renders to:
http://www.gravatar.com/avatar/08aff750c4586c34375a0ebd987c1a7e
Size_,default_,rating and secure parameters explained here
are available.
#{gravatar.url 'john@example.org', size:50, default:'mm', rating:'pg', secure:true /}