LogSource/lib/functions/inline/build_footer.sh

14 lines
306 B
Bash
Raw Normal View History

2025-09-08 17:38:31 -03:00
#!/bin/bash
#############
# DESCRIPTION
#############
# Appends the footer/closing tags to a page.
#
#############
# Usage:
# build_footer destination.html
build_footer() {
cat $config/footer.html >> $1
}