50 lines
1.6 KiB
Mako
50 lines
1.6 KiB
Mako
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" type="text/css" href="index.css" />
|
|
<title>Computer Science Club Mirror</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="logo">
|
|
<a href="/"><img src="/include/header.png" alt="Computer Science Club Mirror - The University of Waterloo - Funded by MEF" title="Computer Science Club Mirror - The University of Waterloo - Funded by MEF" /></a>
|
|
</div>
|
|
|
|
<div id="listing">
|
|
<table>
|
|
<tr><th>Directory</th><th>Project Site</th><th>Size</th></tr>
|
|
|
|
% for dir in directories:
|
|
<tr>
|
|
<td>
|
|
${h.link_to(dir['dir']+'/', '/'+dir['dir']+'/')}
|
|
</td>
|
|
|
|
<td>
|
|
% if 'site' in dir:
|
|
${h.link_to(dir['site'], dir['url'])}
|
|
% endif
|
|
</td>
|
|
|
|
<td>${dir['size'] | h}</td>
|
|
</tr>
|
|
|
|
% endfor \
|
|
|
|
<tr class="total">
|
|
<td>Total</td>
|
|
<td></td>
|
|
<td>${total_size}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<p>This service is run by the <a href="https://csclub.uwaterloo.ca/">Computer Science Club of the University of Waterloo</a>.<br />It is made possible by funding from the <a href="https://uwaterloo.ca/math-endowment-fund/">Mathematics Endowment Fund</a><br />and support from the <a href="https://cs.uwaterloo.ca">David R. Cheriton School of Computer Science</a>.</p>
|
|
<p>Report an issue or request we mirror a project by contacting <a href="mailto:systems-committee@csclub.uwaterloo.ca">systems-committee@csclub.uwaterloo.ca</a>.</p>
|
|
<p>Generated (local time): ${generated.strftime("%Y-%m-%d %-I:%M%p")}</p>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|