summaryrefslogtreecommitdiff
path: root/build.rb
diff options
context:
space:
mode:
Diffstat (limited to 'build.rb')
-rwxr-xr-xbuild.rb11
1 files changed, 7 insertions, 4 deletions
diff --git a/build.rb b/build.rb
index 608c6aa..a617fc0 100755
--- a/build.rb
+++ b/build.rb
@@ -79,7 +79,7 @@ files = {}
puts defs
-defs["groups"].each do |key, value|
+defs["groups"].each do |value|
# For each image inside group
forImgs(value["imgs"]) do |img|
@@ -99,8 +99,11 @@ File.open(File.join(options[:path], "index.html"), "w") do |file|
# Print preample
file.write(template[0])
- defs["groups"].each do |key, value|
- file.puts "<h2>#{key}</h2>"
+ defs["groups"].each do |value|
+ file.puts "<div class=\"group\">"
+ if value[:title]
+ file.puts "<h2>#{value[:title]}</h2>"
+ end
forImgs(value["imgs"]) do |img|
href = options[:base]
# If href is given add a filename at the end
@@ -114,7 +117,7 @@ File.open(File.join(options[:path], "index.html"), "w") do |file|
if value["what"]
file.puts "<p>#{value["what"]}"
end
-
+ file.puts "</div>"
end
if options[:commit]