flownative / gravatar
Gravatar View Helper for Flow
Installs: 5 147
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 0
Type:neos-package
Requires
- neos/flow: ^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0
This package is auto-updated.
Last update: 2024-10-31 00:23:58 UTC
README
Gravatar View Helper for Flow
This package provides a Fluid View Helper which can be used in Neos Flow based applications for displaying Gravatar images.
Installation
The Flownative Gravatar package is installed as a regular Flow package via Composer. For your existing project,
simply include flownative/gravatar
into the dependencies of your Flow or Neos distribution:
$ composer require flownative/gravatar:~2.0
Usage
In your Fluid template, use the Gravatar View Helper like any other view helper. Possible arguments for the view helper are:
{namespace gravatar=Flownative\Gravatar\ViewHelpers} <html lang="en"> ... <body> <gravatar:gravatar email="{someEmailAddress}" default="retro" size="48" alt="image" class="img-circle" width="48" height="48" /> </body> </html>