2 releases
0.1.1 | Jun 23, 2021 |
---|---|
0.1.0 | Jun 23, 2021 |
#13 in #descriptions
17KB
397 lines
bupkis
A small static album generator.
Features
- Trivial installation (pure Rust, no system dependencies)
- 100% static (no server-side rendering)
- Optional progressive enhancement with JavaScript (arrow keys, swipes for navigation)
- Optional per-album and per-image descriptions (rendered Markdown)
{Anti,mis}-features
- A central index (each album is its own set of generated pages)
- Intelligent thumbnailing (no content-aware cropping)
- Configurable style/appearance (sorry)
- Secret albums (use basic auth) or EXIF stripping (do it beforehand)
Installation and use
Get it with cargo
:
$ cargo install bupkis
Point it at an album directory:
$ bupkis generate my-album/ /var/www/my-site
$ firefox /var/www/my-site/my-album/index.html
Album layout and configuration
bupkis
loads album directories that are structured like this:
my-album/
img001.jpg
img002.png
img003.jpg
album.yml
JPEG and PNG are the only officially supported image formats.
album.yml
is a YAML-formatted configuration file that configures the album's
order and description/individual photo descriptions:
# slugified as my-album
title: my album
# album description, rendered in the album's index
desc: |
this is the album's description. it's *rendered* as **markdown**.
# whether or not to generate JavaScript for this album
javascript: true
# each photo of the album, in presentation order
photos:
- name: img001.jpg
desc: |
individual images have descriptions too, which are also **markdown**.
- name: img002.png
desc: |
image descriptions are optional, so this next one doesn't have one.
- name: img003.jpg
Dependencies
~15–25MB
~328K SLoC