From 87383e624855def55e13d238b2f20b79c418c1d9 Mon Sep 17 00:00:00 2001 From: elijah Date: Tue, 21 Jan 2014 13:54:45 -0800 Subject: added default pricing, privacy policy and tos pages. --- app/views/layouts/_footer.html.haml | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'app/views/layouts/_footer.html.haml') diff --git a/app/views/layouts/_footer.html.haml b/app/views/layouts/_footer.html.haml index e69de29..ab925e8 100644 --- a/app/views/layouts/_footer.html.haml +++ b/app/views/layouts/_footer.html.haml @@ -0,0 +1,11 @@ +.container + .row + = link_to t(:home), home_path + = link_to t(:privacy_policy), privacy_policy_path + = link_to t(:terms_of_service), terms_of_service_path + - if lookup_context.exists?('pages/about') + = link_to t(:about), about_path + - if lookup_context.exists?('pages/contact') + = link_to t(:contact), contact_path + - if APP_CONFIG[:service_levels] + = link_to t(:pricing), pricing_path \ No newline at end of file -- cgit v1.2.3 From 67650ea9fead442cb2f66a2fbbec452c890d0775 Mon Sep 17 00:00:00 2001 From: elijah Date: Wed, 22 Jan 2014 02:18:30 -0800 Subject: added a default footer with links to privacy policy, tos, pricing, about us, contact. --- app/views/layouts/_footer.html.haml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'app/views/layouts/_footer.html.haml') diff --git a/app/views/layouts/_footer.html.haml b/app/views/layouts/_footer.html.haml index ab925e8..5909bdd 100644 --- a/app/views/layouts/_footer.html.haml +++ b/app/views/layouts/_footer.html.haml @@ -1,11 +1,10 @@ -.container - .row - = link_to t(:home), home_path - = link_to t(:privacy_policy), privacy_policy_path - = link_to t(:terms_of_service), terms_of_service_path - - if lookup_context.exists?('pages/about') - = link_to t(:about), about_path - - if lookup_context.exists?('pages/contact') - = link_to t(:contact), contact_path - - if APP_CONFIG[:service_levels] - = link_to t(:pricing), pricing_path \ No newline at end of file +.full-height + = link_to icon('home') + t(:home), home_path + = link_to icon('eye-close') + t(:privacy_policy), privacy_policy_path + = link_to icon('file') + t(:terms_of_service), terms_of_service_path + - if lookup_context.exists?('pages/about') + = link_to icon('info-sign') + t(:about), about_path + - if lookup_context.exists?('pages/contact') + = link_to icon('comment') + t(:contact), contact_path + - if APP_CONFIG[:service_levels] + = link_to icon('shopping-cart') + t(:pricing), pricing_path \ No newline at end of file -- cgit v1.2.3