https://github.com/skippednote/gblibrary
https://github.com/skippednote/gblibrary
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/skippednote/gblibrary
- Owner: skippednote
- Created: 2017-08-12T11:16:00.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-02-22T12:58:45.000Z (over 6 years ago)
- Last Synced: 2025-05-29T19:07:26.270Z (about 1 year ago)
- Language: Go
- Size: 151 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gblibrary
> Get book details using ISBN number and build a library page.
### Install
> go get github.com/skippednote/gblibrary
### Setup
- Add a `books.yml` file where you want to build the library page.
```yaml
- isbn: '1617292230'
rating: 3
read: false
- isbn: '0137081073'
rating: 3
read: false
```
- Add a `book.tmpl.html` which is used to build a page for each book.
```twig
{{ .Title }}
{{ .Author }}
```
### Usage
> $ gblibrary

[Example Library](https://bassam.co/library/)
### Usage
- [ ] Use flags to add custom configuration.
- [ ] Multiple output formats.