summaryrefslogtreecommitdiff
path: root/index
diff options
context:
space:
mode:
Diffstat (limited to 'index')
-rwxr-xr-xindex14
1 files changed, 14 insertions, 0 deletions
diff --git a/index b/index
new file mode 100755
index 0000000..44cdc35
--- /dev/null
+++ b/index
@@ -0,0 +1,14 @@
+#!/usr/bin/env ruby
+# -*- coding: utf-8 -*-
+load 'util.rb'
+
+template = "index.#{ARGV.shift}.erb"
+
+@pages = []
+for filename in ARGV do
+ @pages.push(Page.new(filename))
+end
+
+erb = ERB.new(File.read(template));
+erb.filename = template
+erb.run()