Compare commits

...

2 Commits

Author SHA1 Message Date
Atlas Cove d5b420be61 Merge branch 'tech' 2023-02-19 01:45:36 +00:00
Atlas Cove 27ee806f3a Added sitemap gen to render.sh 2023-02-19 01:18:26 +00:00
1 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
# render.sh: part of the tape-and-string framework.
# v3.4-p5
# v3.4-p6
#B: Load
enable -f /usr/lib/bash/csv csv
declare -A title
@ -71,12 +71,17 @@ function other {
inf "Copying other files..."
cp -rv 'in'/* out/
}
function sitemap {
inf "Generating Sitemap..."
./gensimap.sh
}
function all {
load_title
dirs
docs
sass
other
sitemap
}
function info {
load_title
@ -124,6 +129,7 @@ case $1 in
other) other;;
rest) other;;
info) info;;
sitemap) sitemap;;
vall) info; all;;
all) all;;
*) all;;