We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I don't know how far in components the project is aiming. but a component that I use a lot is one to generate a Gravatar image.
If aprooved, I can do a pull request with it.
The text was updated successfully, but these errors were encountered:
Do you mean something like the following?
<gravatar name="[email protected]" />
Which would render something like:
<img src="https://www.gravatar.com/avatar/538d845ead710ee91dfa89724b90b2e2" />
Perhaps with support for sizes, e.g.:
<gravatar name="[email protected]" size="200" />
<img src="https://www.gravatar.com/avatar/538d845ead710ee91dfa89724b90b2e2?s=200" />
And overriding the default image:
<gravatar name="[email protected]" default="https://myapp.com/images/default-avatar.jpg" />
<img src="https://www.gravatar.com/avatar/538d845ead710ee91dfa89724b90b2e2?d=https%3A%2F%2Fmyapp.com%2Fimages%2Fdefault-avatar.jpg" />
And lastly support for specifying ratings:
<gravatar name="[email protected]" rating="GravatarRating.PG" />
<img src="https://www.gravatar.com/avatar/538d845ead710ee91dfa89724b90b2e2?r=pg" />
That sounds very useful 😄
Sorry, something went wrong.
No branches or pull requests
I don't know how far in components the project is aiming. but a component that I use a lot is one to generate a Gravatar image.
If aprooved, I can do a pull request with it.
The text was updated successfully, but these errors were encountered: