14 lines
306 B
Bash
14 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
|
||
|
|
}
|