Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/suzukiryuichiro/hugo-cl-image
Quick hugo shortcode to show Cloudinary images on your hugo websites
https://github.com/suzukiryuichiro/hugo-cl-image
cloudinary golang hugo
Last synced: 1 day ago
JSON representation
Quick hugo shortcode to show Cloudinary images on your hugo websites
- Host: GitHub
- URL: https://github.com/suzukiryuichiro/hugo-cl-image
- Owner: SuzukiRyuichiro
- Created: 2022-09-11T12:06:31.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-31T11:44:37.000Z (almost 2 years ago)
- Last Synced: 2024-11-09T09:39:50.520Z (about 2 months ago)
- Topics: cloudinary, golang, hugo
- Language: HTML
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Setup
1. make a submodule in your themes folder
2. add the theme in the theme array in your `config.toml`
```toml
theme = ["some other theme", "cl-image"]
```
3. add the following to your params portion of `config.toml`
```toml
[params]
baseURL = "https://res.cloudinary.com/" # This is the same for everyone
cloudName = "your cloud name" # You can check your cloud name from cloudinary console page
folderName = "Portfolio" # if you want to put collection of pictures into a single folder, write the name of the folder (optional)
```