summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2022-02-21 22:30:15 +0000
committerPaul Buetow <paul@buetow.org>2022-02-21 22:30:15 +0000
commit45979c0b508e125616d022e6366ea7c45c3b170c (patch)
treeeda98aebb2f608c0f0ce3c51a39c6ec5a546a918
parent7dd557388056d383f3f5d410d0d825a887ff87b3 (diff)
add installation instructions and HTML templates to the readme
-rw-r--r--README.md17
1 files changed, 15 insertions, 2 deletions
diff --git a/README.md b/README.md
index 6d696e4..f2c2405 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,19 @@
# photoalbum
photoalbum is a minimal Bash script for Unix like operating systems (such as Linux) to generate static web photo albums.
-As a requirement `convert` from ImageMagick needs to be installed.
-
The resulting static photo album is pure HTML+CSS (without any JavaScript!). An example album can be surfed here: https://sidewalk.ninja
+## Installation
+
+Run the following commands to install it:
+
+```
+make
+sudo make install
+```
+
+Also, as a requirement, `convert` from ImageMagick needs to be installed.
+
## Usage
```
@@ -24,3 +33,7 @@ The resulting static photo album is pure HTML+CSS (without any JavaScript!). An
3. Run `make` (or `photoalbum generate`) to generate it.
4. Distribute the `./dist` directory to a static web server.
5. Clean the mess up with `make clean` or `photoalbum clean`
+
+## HTML templates
+
+Poke around in this source directory. You will find a bunch of Bash-HTML template files. You could tweak them to your likings.