|
- <%page args="environ, cookies"/>\
- <%namespace module="toolserver.background" import="get_desc_url"/>\
- <%!
- from os import path
- %>\
- <%
- root = path.dirname(environ["SCRIPT_NAME"])
- pretty = path.split(root)[0]
- %>\
- </div>
- <div id="footer">
- <div id="foot-divider"></div>
- <table id="footer-box">
- <tr>
- <td>
- <a href="https://wiki.toolserver.org/"><img src="${root}/static/images/toolserver-button.png" title="Powered by the Wikimedia Toolserver" alt="Powered by the Wikimedia Toolserver" /></a>
- </td>
- <td>
- <p>Copyright © 2009–2013 <a href="//en.wikipedia.org/wiki/User:The_Earwig">Ben Kurtovic</a> • \
- <a href="mailto:earwig@toolserver.org">Contact</a> • \
- <a href="https://github.com/earwig/toolserver">View Source</a> • \
- % if ("EarwigBackground" in cookies and cookies["EarwigBackground"].value in ["potd", "list"]) or "EarwigBackground" not in cookies:
- <a href="${get_desc_url() | h}">Background</a> • \
- % endif
- <a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0 Strict</a>
- </p>
- </td>
- <td>
- <a href="http://earwig.github.com/"><img src="${root}/static/images/earwig-button.png" title="Powered by Earwig Technology" alt="Powered by Earwig Technology" /></a>
- </td>
- </tr>
- </table>
- </div>
- </body>
- </html>
|