LogSource/lib/functions/inline/build_footer.sh
Wheaterwax 0faf445b39
Some checks are pending
Deploy Arise to html branch / Deploy Arise (push) Waiting to run
initial commit with stuff from arise
2025-09-01 18:57:24 -03:00

13 lines
306 B
Bash

#!/bin/bash
#############
# DESCRIPTION
#############
# Appends the footer/closing tags to a page.
#
#############
# Usage:
# build_footer destination.html
build_footer() {
cat $config/footer.html >> $1
}