Skip to content

mbarbieri/play-gravatar

Repository files navigation

play-gravatar

Integrate Gravatar into your Play application.

Installation

Module installation

Install the gravatar module from the modules repository:

play install gravatar

Enable the module

After installing the module, add the following to your application.conf to enable it:

module.gravatar=${play.path}/modules/gravatar

Using gravatar tag

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

Parameters

Size_,default_,rating and secure parameters explained here
are available.

#{gravatar.url 'john@example.org', size:50, default:'mm', rating:'pg', secure:true /}

About

Integrate Gravatar into your Play! application.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published