Skip to content

Utilisation de la fonction gravatar

Quentin Lebourgeois edited this page Aug 23, 2013 · 2 revisions

La fonction gravatar() fourni une URL permettant d'afficher l'avatar de la personne si son adresse mail est reliée à un compte Gravatar

Prototype

gravatar(User, ImageSize, DefaultImage)

Utilisation

<p>
    <img src="{{ gravatar(user) }}" />
</p>
<p>
    <img src="{{ gravatar(user, 64, 'http://www.example.com/image.png') }}" />
</p>