From b84f4eaed85bfd5f0cd5bfa07378e0e4e3c6a2d2 Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Mon, 1 Oct 2012 16:36:35 -0500 Subject: [PATCH] In the page footer, add a link to the wiki Signed-off-by: Federico Mena Quintero --- app/views/layouts/_footer.html.haml | 2 ++ spec/views/layouts/_footer_spec.rb | 1 + 2 files changed, 3 insertions(+) diff --git a/app/views/layouts/_footer.html.haml b/app/views/layouts/_footer.html.haml index 5e728baaf..19f7ca38b 100644 --- a/app/views/layouts/_footer.html.haml +++ b/app/views/layouts/_footer.html.haml @@ -7,6 +7,8 @@ = link_to "License", "https://github.com/Growstuff/growstuff/blob/dev/LICENSE.txt" %li = link_to "Github", "https://github.com/Growstuff/" + %li + = link_to "Wiki", "http://wiki.growstuff.org" %li = link_to "Mailing list", "http://lists.growstuff.org/mailman/listinfo/discuss" %li diff --git a/spec/views/layouts/_footer_spec.rb b/spec/views/layouts/_footer_spec.rb index 2b8528039..79b76da68 100644 --- a/spec/views/layouts/_footer_spec.rb +++ b/spec/views/layouts/_footer_spec.rb @@ -10,6 +10,7 @@ describe 'layouts/_footer.html.haml', :type => "view" do rendered.should contain 'About' rendered.should contain 'License' rendered.should contain 'Github' + rendered.should contain 'Wiki' rendered.should contain 'Mailing list' rendered.should contain 'Community Guidelines' end