al-quran.reflectslight.io/rules/pages/surah/index.rules
0x1eef 5f957af84c Set document title at compile time
This change will hopefully make it easier for search engines to
pick up a page's title.
2023-03-12 11:23:48 -03:00

34 lines
953 B
Ruby

#!/usr/bin/env ruby
# frozen_string_literal: true
##
# Rules for the surah index available at /<locale>/ (eg /en/) and its
# dependencies.
locales.each do |locale|
compile "/html/pages/surah/index.html.erb", rep: "/#{locale}/surah/index" do
title = i18n[locale].TheNobleQuran
filter(:erb, locals: {locale:, title:})
write "/#{locale}/index.html"
end
end
compile "/js/pages/surah/index.tsx" do
filter :webpack, depend_on: ["/js/components",
"/js/lib/[!WebPackage]/",
"/js/hooks"]
write "/js/pages/surah/index.js"
filter :gzip_text
write "/js/pages/surah/index.js.gz"
end
compile "/js/pages/surah/index/loader.ts" do
filter :webpack, depend_on: "/js/lib/WebPackage"
write "/js/pages/surah/index/loader.js"
end
compile "/css/pages/surah/index.scss" do
filter :sass, syntax: :scss, style: :compact
filter :rainpress
write("/css/pages/surah/index.css")
end