#!/usr/bin/perl
print "Content-type:text/html\n\n";
print<<__EOQ__;
<head>
<title>30 days of superheroes</title>

<div style="width:400px; margin:auto;">
<h2>30 days of superheroes</h2>
In June 2011 I took "cobie goes boom"'s <a href="http://30daysofsuperheroes.tumblr.com">30 day drawing challenge: superheroes</a>. The challenge is divided into 4 weeks of increasingly complex challanges... the first week you make your superhero team, the next you show theme in individual poses, the next acting in pairs, and finally as a team. Finally you have a freeform day and then a comic book cover.
<br><br>
It was a lot of fun, and I learned a bit about composing scenes and using layers in the program "ArtStudio" on iPad. While my style is still laughably doodle-ish, it was a great experience.
</div>

<br><br>

__EOQ__

print "<center>";
open(READ,"list.tab");

while ($line = <READ>){

($file,$desc) = split(/\t/,$line);
print<<__EOQ__;
<img src="$file"><br>
$desc<br><br>
__EOQ__

}
print "</center>";
