annotate gpp/templates/404.html @ 492:3c48a555298d

Added a custom tag to display a link to a profile. Refactored the avatar tag to optionally display a profile link around the image. Removed the width and height attributes from the avatar image tag. I think this was causing disk hits whenever those properties were not cached. The avatar tag is now an inclusion tag.
author Brian Neal <bgneal@gmail.com>
date Sat, 22 Oct 2011 00:07:50 +0000
parents dbd703f7d63a
children
rev   line source
gremmie@1 1 <?xml version="1.0" encoding="UTF-8"?>
gremmie@1 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
gremmie@1 3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
gremmie@1 4 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
gremmie@1 5 <head><title>Page Not Found</title>
gremmie@1 6 </head>
gremmie@1 7 <body>
gremmie@1 8
gremmie@1 9 <h1>Not Found</h1>
gremmie@1 10
gremmie@1 11 <p>The requested URL {{ request.path|escape }} was not found on this server.</p>
gremmie@1 12
gremmie@1 13 </body>
gremmie@1 14 </html>