Browse Source

Updates, nicer footer, etc

pull/24/head
Ben Kurtovic 12 years ago
parent
commit
cbc00a4ad6
6 changed files with 48 additions and 16 deletions
  1. +6
    -4
      pages/index.mako
  2. +25
    -6
      pages/support/footer.mako
  3. +1
    -1
      pages/support/header.mako
  4. +16
    -5
      static/css/main.css
  5. BIN
     
  6. BIN
     

+ 6
- 4
pages/index.mako View File

@@ -1,7 +1,9 @@
<%include file="/support/header.mako" args="environ=environ, title='Home'"/>
<div id="content">
% for key, value in environ.items():
<p><b>${key}</b>: ${value}</p>
% endfor
% for key, value in environ.items():
% if key != "PATH":
<p><b>${key}</b>: ${value}</p>
% endif
% endfor
</div>
<%include file="/support/footer.mako"/>
<%include file="/support/footer.mako" args="environ=environ"/>

+ 25
- 6
pages/support/footer.mako View File

@@ -1,9 +1,28 @@
<div id="footer">
<p>Copyright &copy; 2009&ndash;2012 <a href="http://earwig.github.com/">Ben Kurtovic</a> / <a href="http://en.wikipedia.org/wiki/User:The_Earwig">The Earwig</a> &bull; \
<a href="mailto:earwig@toolserver.org">Contact</a> &bull; \
<a href="https://github.com/earwig/toolserver">View Source</a> &bull; \
<a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0 Strict</a></p>
</div>
<%page args="environ"/>\
<%!
from os import path
%>\
<% root = path.dirname(environ["SCRIPT_NAME"]) %>\
</div>
<div id="footer">
<div id="foot-divider"></div>
<table id="footer">
<tr>
<td>
<a href="http://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 &copy; 2009&ndash;2012 <a href="http://earwig.github.com/">Ben Kurtovic</a> &bull; \
<a href="mailto:earwig@toolserver.org">Contact</a> &bull; \
<a href="https://github.com/earwig/toolserver">View Source</a> &bull; \
<a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0 Strict</a>
</p>
</td>
<td>
<a href="http://en.wikipedia.org/wiki/User:The_Earwig"><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>

+ 1
- 1
pages/support/header.mako View File

@@ -8,7 +8,7 @@
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>${title} - earwig@toolserver</title>
<link rel="stylesheet" href="${root}/static/main.css" type="text/css" />
<link rel="stylesheet" href="${root}/static/css/main.css" type="text/css" />
</head>
<body>
<div id="container">

static/main.css → static/css/main.css View File

@@ -2,12 +2,12 @@ body {
font-family: helvetica, arial, clean, sans-serif;
font-size: 14px;
color: #000;
background-color: #E0E0E0;
background-color: #EEE;
}

div#container {
width: 800px;
margin: 20px auto 32px auto;
margin: 20px auto 65px auto;
border: 1px solid #999;
border-radius: 10px;
background-color: #FFF;
@@ -18,10 +18,21 @@ div#content {
}

div#footer {
font-size: 11px;
position: fixed;
width: 100%;
height: 45px;
bottom: 0;
font-size: 12px;
text-align: center;
padding: 9px 4px 12px 4px;
color: #222;
background-color: #EEE;
}

div#foot-divider {
border-bottom: 1px solid #999;
}

table#footer {
width: 100%;
}

a:link { color: #373; text-decoration: none; }

BIN
View File


BIN
View File


Loading…
Cancel
Save