summaryrefslogtreecommitdiff
path: root/www/build.sh
blob: 04b6200c0d3735aa9c235fc0a3fe3ac9426ac37c (plain)
1
2
3
4
5
6
7
#!/bin/bash
cheetah compile _SiteTemplate.tmpl
pages="index credits contribute download examples learn praise whouses"
for pageId in $pages; do
   echo $pageId
   env pageId=$pageId python _SiteTemplate.py --env > ${pageId}.html
done