A lot of projects ported from the old metanohi site.

This commit is contained in:
Niels Serup
2011-08-02 23:08:13 +02:00
parent d1b8234f78
commit a63b3ad10d
261 changed files with 12435 additions and 28 deletions

View File

@@ -0,0 +1,19 @@
#+title: alart images
#&summary
Art from alart
#&
#+license: cc0
#&fullpage
* alart images
Click on the images to go to their SVG versions.
#++exec
#+BEGIN_SRC python
root = misc.macrog('pathdir')
for f in os.listdir(root):
if os.path.isfile(os.path.join(root, f)) and f.endswith('.png'):
base = f[:-4]
print("<a href='{base}.svg'><img src='{base}.png' alt='{base}' /></a>".format(base=base))
#+END_SRC