Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
&include_this('./ssi_file.html');
sub include_this {
my $file_path_name = shift or
die "No file requested.\n";
open(IPF,"<$file_path_name") or
die "Failed to open SSI file, $!\n";
while (<IPF>) { print; }
close IPF;
}