Plugin for Grav that adds scrobbler of your latest played songs using the Last.fm API.
Installing the Last.fm plugin can be done in one of two ways. The GPM (Grav Package Manager) installation method enables you to quickly and easily install the plugin with a simple terminal command, while the manual method enables you to do so via a zip file.
The simplest way to install this plugin is via the Grav Package Manager (GPM) through your system's terminal. From the root of your Grav folder type:
bin/gpm install lastfm
This will install Last.fm into your /user/plugins
directory within Grav. Its files can be found under /your/site/grav/user/plugins/lastfm
.
To install this plugin, just download the zip version of this repository and unzip it under /your/site/grav/user/plugins
. Then, rename the folder to lastfm
. You can find these files on GitHub or via GetGrav.org.
You should now have all the plugin files under
/your/site/grav/user/plugins/lastfm
Include this line in your template.html.twig file:
{% include 'partials/lastfm.html.twig' %}
Or you can use a Twig function:
{{ lastfm() }}
Variable | Default | Options | Note |
---|---|---|---|
enabled | true | true or false |
Enables or disables the plugin. |
lastfm_username | null | your_username |
Last.fm username (*) |
api_key | null | xxx |
Create an API Account and get your API Key (*) |
limit | 10 | int < 50 |
Total slides fetched. Last.fm limitation up to 50. |
display | 5 | int <= 25 |
Number of slides to display |
width | 280 | int |
Main slide width |
height | 280 | int |
Main slide height |
image_size | medium |
small , medium , large or extralarge |
Set an image size for albums |
background_color | 'transparent' |
rgba or hex color |
Widget background color |
path | /_lastfm |
/route |
Define the route for Vue app. Useful in case of collision |
cache_enabled | true |
bool |
Enable or disable cache storage |
cache_lifetime | 300 | int (seconds) |
How much long should keep data stored in cache |
(*) Required
See LICENSE