diff --git a/lib/site.rb b/lib/site.rb index 9a5d7a8..230bc60 100644 --- a/lib/site.rb +++ b/lib/site.rb @@ -28,13 +28,13 @@ class Site # New applications page apps = ScraperWiki.select("* from `applications` order by date_received desc limit 60") - Petrify.page('new-applications', 'new-applications', { apps: apps }) + Petrify.page('new-applications', 'new-applications', { apps: apps, title: "New applications" }) # Latest decisions page apps = ScraperWiki.select("* from `applications` order by date_decision desc limit 60") path = 'decisions' - Petrify.page(path, 'decisions', { apps: apps }) + Petrify.page(path, 'decisions', { apps: apps, title: "Latest decisions" }) Petrify.csv(path, 'inlink-decisions', apps) # Appeals page @@ -58,12 +58,12 @@ class Site ") path = 'appeals' - Petrify.page(path, 'appeals', { summary: summary, apps: apps }) + Petrify.page(path, 'appeals', { summary: summary, apps: apps, title: "Appeals" }) Petrify.csv(path, 'inlink-appeals', apps) # Media page stories = CSV.read('media.csv', :headers => true ) - Petrify.page('media', 'media', { stories: stories }) + Petrify.page('media', 'media', { stories: stories, title: "Media" }) # Authority pages auths = ScraperWiki.select("distinct(authority_name) as authority_name @@ -88,7 +88,7 @@ class Site path = ['authorities', slug(auth['authority_name'])] Petrify.page(path, 'authority', \ - { apps: apps, auth: auth, summary: summary, stories: this_stories }) + { apps: apps, auth: auth, summary: summary, stories: this_stories, title: auth['authority_name'] }) Petrify.csv(path, slug(auth['authority_name']), apps) end end diff --git a/views/layout.haml b/views/layout.haml index fd70526..eb22f33 100644 --- a/views/layout.haml +++ b/views/layout.haml @@ -1,7 +1,12 @@ !!!5 %html %head - %title InLink kiosks planning applications + %title + - subtitle = "InLink kiosks planning applications" + - if defined? title + = "#{title} · #{subtitle}" + - else + = subtitle %link{ :href => '/style.css', :rel => 'stylesheet'} %body #main @@ -41,4 +46,3 @@ Data API and bulk download %a{ :href => 'https://twitter.com/search?f=tweets&vertical=default&q=%23inlink'}< \#InLink on Twitter -