17 lines
321 B
Text
17 lines
321 B
Text
|
#!/usr/bin/env ruby
|
||
|
|
||
|
##
|
||
|
# Redirects to a random surah
|
||
|
|
||
|
locales.each do |locale|
|
||
|
compile "/html/pages/surah/random.html.erb", rep: "random/#{locale}" do
|
||
|
filter(:erb)
|
||
|
write("/#{locale}/random/index.html")
|
||
|
end
|
||
|
end
|
||
|
|
||
|
compile "/js/pages/surah/random.ts" do
|
||
|
filter :webpack
|
||
|
write "/js/pages/surah/random.js"
|
||
|
end
|