mirror of
https://github.com/kennethreitz-archive/untar.it.git
synced 2026-06-21 07:40:57 +00:00
14 lines
236 B
Mako
14 lines
236 B
Mako
<%inherit file="base.mako" />
|
|
|
|
<h1>Untar.it</h1>
|
|
|
|
<p>
|
|
What kind of file do you need to open?
|
|
</p>
|
|
|
|
<ul>
|
|
% for filetype in route.context['known_types']:
|
|
<li><a href="/${filetype}/">${filetype}</a></li>
|
|
% endfor
|
|
</ul>
|