summaryrefslogtreecommitdiff
path: root/www/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'www/build.sh')
-rwxr-xr-xwww/build.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/www/build.sh b/www/build.sh
new file mode 100755
index 0000000..04b6200
--- /dev/null
+++ b/www/build.sh
@@ -0,0 +1,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