What does $ {imagepath} mean in a CSS file?
I am trying to adapt a perl script that is used to create a popup page for a public wifi setup. I was only given a few example files to work with and no documentation. A few hours later, on the phone with the hotspot vendor, I was told that I could "just modify" the examples to design our custom page. I am trying to understand what is going on in the files.
I have a .css file with the following.
#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 html snippet:
<a href=\"${imagepath}WirelessAUP-ibm.htm\" target=\"_self\">Acceptable Use Policy</a>
What does $ {imagepath} refer to ? Can I get it from him?
+1
a source to share