IgnoredAmbience / tube-challenge-league

Automatically exported from code.google.com/p/tube-challenge-league
0 stars 1 forks source link

Tie footer data (email link) into page content #17

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
At the moment we have the following at the bottom of each page:

<p>Errors? Omissions? Dates? Email: <a
href="mailto:tube@scriv.me.uk">tube@scriv.me.uk</a>.</p>

My idea is to link at least the page title into the email link. For
example, for the R15 Generator page, you'd have the following link
automatically given...

<p>Errors? Omissions? Dates? Email: <a
href="mailto:tube@scriv.me.uk?subject=Tube Challenge League - R15
Generator">tube@scriv.me.uk</a>.</p>

...which just helps to fill in a bit of pertinent information (ie which
page they have a problem with) at no cost to the user.

Original issue reported on code.google.com by t...@pberry.me.uk on 22 Oct 2009 at 1:05

GoogleCodeExporter commented 9 years ago
Escape the spaces; that's better:
<p>Errors? Omissions? Dates? Email: <a
href="mailto:tube@scriv.me.uk?subject=Tube%20Challenge%20League%20-%20R15%20Gene
rator">tube@scriv.me.uk</a>.</p>

Original comment by t...@pberry.me.uk on 22 Oct 2009 at 1:06

GoogleCodeExporter commented 9 years ago
See events/index.php for a working example.
Just need to convert other pages over now...

Original comment by t...@pberry.me.uk on 22 Oct 2009 at 4:14