I am trying to adapt a perl script that is used to generate a splash page for a public wifi installation. I was only given a couple example files to work from and no documentation. After several hours on the phone with the access point vendor I was told I could “just edit” the examples in order to design our custom page. I am trying to understand what is going on in the files.
I have .css file with the following in it.
#logo_container {
width: 528px; height: 58px;
background-image: url(${imagepath}body_title_line.gif);
border: 0;
}
I also have a .pl file with a variable $html_body_top containing the following snippet of html:
<a href=\"${imagepath}WirelessAUP-ibm.htm\" target=\"_self\">Acceptable Use Policy</a>
What does the ${imagepath} refer to? Can I get at it?
I guess the root directory of your images. So if body_ title_line.gif is under /images/ the imagePath variable will probably need to reflect this.
CSS does not support variables so this is something injected by your PL script.