When authoring html code for your bbs, you must be aware that the resulting page will show from the
remote server that hosts aGNeS. This means that relative links will not work. A relative link
is such as <a href="/index.html">Home</a>
.
Instead, you should use a full link, such as
<a href="http://www.foo.com/index.html">Home</a>
This is valid for graphics.
If your pictures do show up when authoring the template and do not show up on the bbs, this is probably due
to a relative link. Change all <img src="images/picture.gif">
into
<img src="http://www.foo.com/images/picture.gif">
.