Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/myles/jekyll-thumbor
A Jekyll template tag for Thumbor imaging service.
https://github.com/myles/jekyll-thumbor
jekyll thumbor
Last synced: 25 days ago
JSON representation
A Jekyll template tag for Thumbor imaging service.
- Host: GitHub
- URL: https://github.com/myles/jekyll-thumbor
- Owner: myles
- License: mit
- Created: 2017-03-21T13:13:47.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-11-21T14:26:00.000Z (about 5 years ago)
- Last Synced: 2024-11-15T07:21:31.117Z (about 2 months ago)
- Topics: jekyll, thumbor
- Language: Ruby
- Homepage: https://myles.github.io/jekyll-thumbor
- Size: 44.9 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Jekyll::ThumborTag
A [Jekyll](https://jekyllrb.com/) template tag for [Thumbor](https://github.com/thumbor/thumbor) imaging service.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'jekyll-thumbor'
```And then execute:
```
$ bundle
```Or install it yourself as:
```
$ gem install jekyll-thumbor
```You now need to enable the plugin in your Jekyll web site. Append it to the `gems` array in your `_config.yml` file:
```yaml
gems:
- jekyll-thumbor
```## Usage
You need to add an array for thumbor configuration to your `_config.yml` file:
```yaml
thumbor:
url: "https://your-thumbor-server"
key: "your-key"
```Then in the liquid template you can use the template tag:
```html